-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 KB
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
{
"name": "vue-admin",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install",
"lint": "eslint --fix --ext .js,.ts,.vue src"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@element-plus/icons": "^0.0.11",
"@vitejs/plugin-legacy": "^1.7.1",
"element-plus": "^2.1.4",
"js-cookie": "^3.0.1",
"pinia": "^2.0.12",
"rollup-plugin-esbuild": "^4.8.2",
"sass": "^1.49.9",
"vitest": "^0.7.11",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/test-utils": "^2.0.0-rc.18",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"happy-dom": "^2.50.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"typescript": "^4.6.3",
"unplugin-auto-import": "^0.6.6",
"unplugin-vue-components": "^0.18.0",
"vite": "^2.8.0",
"vue-tsc": "^0.29.8"
},
"husky": {
"hooks": {
"pre-commit": "echo 'git commit trigger husky pre-commit hook' "
}
},
"lint-staged": {
"src/**": [
"prettier --config .prettierrc --write",
"eslint --fix",
"git add"
]
}
}