forked from xushanpei/vite_vue3_ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"version": "0.0.0",
"license": "ISC",
"scripts": {
"dev": "vite",
"build:dev": "vite build --mode development",
"build:pro": "vite build --mode production",
"serve": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.24.0",
"naive-ui": "^2.21.2",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.10",
"vfonts": "^0.1.0",
"vue": "^3.2.2",
"vue-router": "4"
},
"devDependencies": {
"@babel/types": "^7.16.0",
"@types/node": "^16.11.10",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.4.0",
"dart-sass": "^1.25.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mrm": "^3.0.10",
"postcss": "^8.4.4",
"prettier": "^2.4.1",
"sass": "^1.44.0",
"typescript": "^4.5.2",
"vite": "^2.4.2",
"vite-plugin-compression": "^0.3.6",
"vite-plugin-eslint": "^1.3.0",
"vue-tsc": "^0.0.24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint",
"prettier --write",
"git add"
]
}
}