-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"name": "armytiger-web",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext .js,.ts,.vue",
"serve": "vite preview"
},
"dependencies": {
"axios": "^0.24.0",
"pinia": "^2.0.2",
"vue": "^3.2.16"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@vitejs/plugin-vue": "^1.9.3",
"eslint": "^8.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-vue": "^8.0.3",
"husky": "^7.0.4",
"less": "^4.1.2",
"lint-staged": "^11.2.6",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^6.7.0",
"typescript": "^4.4.3",
"vite": "^2.6.4",
"vite-svg-loader": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"git add"
]
}
}