-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.21 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
{
"name": "micro-sub-app",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "^16.14.0",
"npm": "^8.1.0"
},
"scripts": {
"start": "vite --mode develop",
"start:test": "vite --mode uat",
"start:pre": "vite --mode sit",
"start:prod": "vite --mode production",
"build:dev": "vue-tsc && vite build --mode develop",
"build:test": "vue-tsc && vite build --mode uat",
"build:pre": "vue-tsc && vite build --mode sit",
"build:prod": "vue-tsc && vite build --mode production",
"preview": "vite preview",
"lint": "eslint --ext .vue,.js,.ts src",
"lint:fix": "eslint --ext .vue,.js,.ts, src --fix",
"prepare": "husky install",
"add:husky-lint-staged": "husky add .husky/pre-commit 'npx lint-staged'",
"add:husky-commitlint": "npx husky add .husky/commit-msg 'npx --no -- commitlint --edit ${1}'",
"preinstall": "npx only-allow yarn",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@arco-themes/vue-mjkgeneral": "^0.0.1",
"@vitejs/plugin-vue": "^4.2.3",
"axios": "0.21.1",
"element-plus": "^2.3.12",
"js-cookie": "^3.0.5",
"pinia": "^2.1.6",
"qs": "^6.11.2",
"terser": "^5.19.4",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@arco-design/web-vue": "^2.52.0",
"@arco-plugins/vite-vue": "^1.4.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/js-cookie": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@unocss/preset-attributify": "^0.55.7",
"@unocss/preset-icons": "^0.55.7",
"@unocss/preset-uno": "^0.55.7",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"typescript": "^5.0.2",
"unocss": "^0.55.7",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-vue-layouts": "^0.8.0",
"vue-tsc": "^1.8.5"
}
}