-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "base-frontend-template",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"tailwind": "tailwind-config-viewer -o",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite --port 8080",
"serve_docker": "vite --port 80 --host",
"preview": "vite preview",
"storybook_docker": "start-storybook -p 80",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@kyvg/vue3-notification": "^2.4.1",
"@vivaconagua/vueca": "^1.0.0-beta.29",
"axios": "^0.27.2",
"leaflet": "^1.9.3",
"pinia": "^2.0.16",
"pinia-plugin-persistedstate": "^3.0.1",
"vue": "^3.2.37",
"vue-axios": "^3.4.1",
"vue-currency-input": "^3.0.0",
"vue-i18n": "^9.1.10",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@intlify/vite-plugin-vue-i18n": "^5.0.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-vite": "^0.2.0",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.9",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/vue": "^6.6.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vueuse/core": "^9.2.0",
"autoprefixer": "^10.4.10",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.1",
"eslint-plugin-vue": "^9.2.0",
"gh-pages": "^4.0.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.53.0",
"tailwind-config-viewer": "^1.7.2",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.0.2",
"vite-plugin-eslint": "^1.7.0",
"vite-plugin-runtime-config": "^1.0.0",
"vitest": "^0.23.2",
"vue-loader": "^16.8.3",
"vue-tsc": "^0.38.9"
}
}