-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "web-components",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com:Viva-con-Agua/base-frontend-template.git"
},
"scripts": {
"dev": "vite",
"tailwind": "tailwind-config-viewer -o",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite --port 28098",
"serve_docker": "vite --port 28098 --host",
"preview": "vite preview",
"storybook_docker": "storybook dev -p 80",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-develop": "vue-tsc --noEmit && vite build --mode develop",
"build-stage": "vue-tsc --noEmit && vite build --mode stage",
"build-main": "vue-tsc --noEmit && vite build --mode main"
},
"dependencies": {
"@geometricpanda/storybook-addon-iframe": "^0.2.2",
"@kyvg/vue3-notification": "^3.3.0",
"@storybook/addons": "^7.6.17",
"@storybook/api": "^7.6.17",
"@storybook/client-api": "^7.6.17",
"@storybook/vue": "^7.6.17",
"@storybook/vue3": "^8.3.6",
"@storybook/web-components": "^8.4.2",
"@vivaconagua/vueca": "^2.0.3",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"axios": "^1.7.7",
"css-loader": "^7.1.2",
"pinia": "^2.2.4",
"pinia-plugin-persistedstate": "^4.1.1",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"vue": "^3.5.11",
"vue-axios": "^3.5.2",
"vue-currency-input": "^3.0.0",
"vue-i18n": "^10.0.4",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@intlify/vite-plugin-vue-i18n": "^7.0.0",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-mdx-gfm": "^8.3.6",
"@storybook/addon-onboarding": "^8.3.6",
"@storybook/blocks": "^8.3.6",
"@storybook/test": "^8.3.6",
"@storybook/vue3-vite": "^8.3.6",
"@storybook/web-components-vite": "^8.3.6",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.10.1",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.10.0",
"jsdom": "^25.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sass": "^1.80.3",
"storybook": "^8.3.6",
"tailwind-config-viewer": "^2.0.4",
"tailwindcss": "^3.4.12",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.8",
"vite-plugin-eslint": "^1.8.1",
"vue-loader": "^17.4.2",
"vue-tsc": "^2.1.6"
}
}