-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
{
"name": "admin-base",
"version": "1.0.0",
"description": "admin基座",
"main": "./dist/index.js",
"scripts": {
"start": "vite",
"build": "vite build",
"ts": "vue-tsc --noEmit",
"prepare": "husky install",
"lint": "eslint --ext .vue,.ts src/"
},
"keywords": [],
"author": "lq",
"license": "ISC",
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@fe-lq/micro-kit": "1.0.1-7",
"@garfish/bridge-vue-v3": "^1.17.1",
"ant-design-vue": "4.0.6",
"crypto-js": "^4.2.0",
"echarts": "^5.4.3",
"garfish": "^1.17.1",
"lodash-es": "^4.17.21",
"pinia": "^2.1.7",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@types/crypto-js": "^4.2.1",
"@types/lodash-es": "^4.17.10",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"sass": "^1.69.4",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"vite": "^5.1.4",
"vite-plugin-vue-devtools": "^7.0.8",
"vue-tsc": "^1.8.15"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "5.1.4"
}
}
}
}