-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "vite-vue-ts",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"commit": "git add . && git-cz && git push",
"push": "git push && conventional-changelog -p angular -i CHANGELOG.md -s",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky install"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"dependencies": {
"ant-design-vue": "^2.1.6",
"axios": "^0.21.1",
"lodash-es": "^4.17.21",
"mockjs": "^1.1.0",
"qs": "^6.10.1",
"vue": "^3.0.5",
"vue-router": "^4.0.8"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/lodash-es": "^4.17.4",
"@types/mockjs": "^1.0.3",
"@types/qs": "^6.9.6",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@vitejs/plugin-legacy": "^1.6.2",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.0.5",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.15.1",
"husky": "^7.0.0",
"less": "^4.1.1",
"less-loader": "^9.0.0",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"sass": "^1.32.13",
"typescript": "^4.3.2",
"vite": "^2.4.3",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-mock": "^2.5.0",
"vite-plugin-style-import": "^0.10.0",
"vue-tsc": "^0.0.24"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}