-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.15 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
{
"name": "vite-ts-vue3-admin",
"version": "1.0.0",
"description": "这是个练习自己搭建工程化的项目",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,tsx src/**",
"lint-less": "stylelint **/*.less --fix"
},
"keywords": [
"vue3",
"vite",
"typescript",
"admin",
"jsx",
"tsx"
],
"author": "眼圈发黑",
"license": "ISC",
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^2.5.0",
"@types/js-cookie": "^2.2.7",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-sfc": "^3.2.37",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.4.7",
"chalk": "^4.1.2",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^7.20.0",
"less": "^2.7.3",
"lint-staged": "^10.5.4",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vite-plugin-inspect": "^0.5.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^2.0.0",
"yorkie": "^2.0.0"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@vueuse/core": "^4.11.2",
"ant-design-vue": "^2.2.8",
"axios": "^0.21.4",
"js-cookie": "^2.2.1",
"mockjs": "^1.1.0",
"normalize.css": "^8.0.1",
"pinia": "^2.0.14",
"vue": "^3.2.37",
"vue-i18n": "^9.1.10",
"vue-router": "^4.1.1"
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.ts",
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"eslint --fix",
"prettier -w -u"
],
"src/**/*.less": [
"stylelint --fix"
]
}
}