-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.3 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
{
"name": "vulcan",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.0 || >=20"
},
"scripts": {
"build": "vite build",
"check:size": "npx vite-bundle-visualizer",
"check:type": "vue-tsc --noEmit",
"commit": "cz",
"dev": "vite --port 8080 --host --open",
"lint": "eslint .",
"prepare": "husky",
"preview": "vite preview --host",
"test": "vitest",
"test:e2e": "cypress open",
"test:unit": "vitest"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"axios": "^1.7.7",
"js-cookie": "^3.0.5",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.2.2",
"vue": "^3.5.8",
"vue-i18n": "^10.0.3",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.6.1",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"cypress": "^13.14.2",
"cypress-vite": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"eruda": "^3.3.0",
"eslint": "^9.11.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-format": "^0.1.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pnpm": "^9.11.0",
"postcss": "^8.4.47",
"postcss-px-to-viewport-8-plugin": "^1.2.5",
"sass-embedded": "^1.79.3",
"sort-package-json": "^2.10.1",
"terser": "^5.33.0",
"typescript": "^5.6.2",
"unplugin-auto-import": "^0.18.3",
"vite": "^5.4.7",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-mock-dev-server": "^1.7.2",
"vite-plugin-vue-devtools": "^7.4.6",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1",
"vue-tsc": "^2.1.6"
},
"lint-staged": {
"*": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"chrome > 40",
"not ie 11"
]
}