-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.97 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
96
97
{
"name": "budget-tracker-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint -c ./.eslintrc.cjs --ignore-path ./.eslintignore .",
"dev": "vite --host",
"prod": "vite --mode production",
"docker-build": "docker build . -t letehaha/budget-tracker-fe",
"docker-push": "docker push letehaha/budget-tracker-fe",
"docker-compose": "npm run docker-build && npm run docker-push",
"start": "npm run dev",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest",
"storybook": "storybook dev -p 6006",
"test:e2e": "cypress run",
"test:e2e:interact": "cypress open --browser chrome --e2e",
"git-pull": "git pull --recurse-submodules",
"postinstall": "chmod +x ./post-install.sh && ./post-install.sh"
},
"type": "module",
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"dependencies": {
"@tanstack/vue-query": "^5.51.21",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"core-js": "^3.38.0",
"date-fns": "^3.6.0",
"highcharts": "^11.4.6",
"highcharts-vue": "^2.0.1",
"lodash-es": "^4.17.21",
"loglevel": "^1.9.1",
"lucide-vue-next": "^0.424.0",
"pinia": "^2.2.1",
"radix-vue": "^1.9.3",
"register-service-worker": "^1.7.2",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"v-calendar": "^3.1.2",
"vue": "3.4.36",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@pinia/testing": "^0.1.5",
"@storybook/addon-actions": "^8.2.8",
"@storybook/addon-docs": "^8.2.8",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addons": "^7.6.17",
"@storybook/cli": "^8.2.8",
"@storybook/vue3": "^8.2.8",
"@storybook/vue3-vite": "^8.2.8",
"@types/lodash-es": "^4.17.12",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/compiler-sfc": "3.4.36",
"@vue/eslint-config-airbnb": "^8.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"cypress": "^13.13.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.27.0",
"jsdom": "^24.1.1",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.8",
"storybook": "^8.2.8",
"storybook-dark-mode": "^4.0.2",
"tailwindcss": "^3.4.8",
"typescript": "^5.5.4",
"vite": "^5.4.7",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.0.5",
"vue-style-loader": "^4.1.3",
"vue-tsc": "^2.0.29"
},
"volta": {
"node": "21.6.0"
}
}