-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "vite_vue3_ts",
"version": "0.0.0",
"scripts": {
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:dev": "vue-tsc --noEmit && vite build --mode development",
"build:pro": "vue-tsc --noEmit && vite build --mode production",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.24.0",
"naive-ui": "^2.26.4",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.10",
"vfonts": "^0.0.3",
"vue": "^3.2.25",
"vue-router": "4"
},
"devDependencies": {
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-vue": "^2.0.0",
"dart-sass": "^1.25.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"mrm": "^3.0.10",
"prettier": "^2.5.1",
"sass": "^1.47.0",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-plugin-compression": "^0.4.0",
"vue-tsc": "^0.29.8"
},
"lint-staged": {
"*.{ts,tsx,vue,js,jsx}": [
"prettier --write",
"yarn lint",
"git add"
]
}
}