-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "vue3-test",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vue-tsc --noEmit && vite preview",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"dependencies": {
"@vitejs/plugin-vue": "^1.2.1",
"axios": "^1.7.4",
"less": "^4.1.1",
"vite": "^4.5.6",
"vue": "^3.0.5",
"vue-router": "4",
"vuex": "^4.0.0"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/compiler-sfc": "^3.0.5",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.9.0",
"husky": "^7.0.1",
"lint-staged": "^10.5.4",
"typescript": "^4.1.3",
"vue-tsc": "^0.0.24"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}