-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"@vueuse/integrations": "^10.3.0",
"axios": "^1.4.0",
"d3": "^7.8.5",
"element-plus": "^2.3.6",
"pinia": "^2.1.3",
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@iconify-json/carbon": "^1.1.17",
"@types/d3": "^7.4.2",
"@types/node": "^20.3.0",
"@unocss/reset": "^0.53.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vue-macros/volar": "^0.11.0",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.42.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"pnpm": "^8.6.1",
"simple-git-hooks": "^2.8.1",
"taze": "^0.10.2",
"typescript": "^5.1.3",
"unocss": "^0.53.1",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.1",
"unplugin-vue-macros": "^2.3.0",
"vite": "^4.3.0",
"vite-plugin-pages": "^0.31.0",
"vitest": "^0.32.0",
"vue-tsc": "^1.6.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,vue,jsx,tsx}": "eslint --fix"
},
"eslintConfig": {
"extends": "@antfu"
}
}