-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.91 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
62
63
64
65
66
67
{
"name": "vue3-builder",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"fix": "eslint --fix --ext .js,.ts,.vue,.jsx,.tsx src",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"gz": "git cz",
"install:husky": "husky install"
},
"lint-staged": {
"*.{ts,tsx,vue,js,jsx}": [
"prettier --write",
"eslint --cache --fix",
"stylelint --fix",
"git add"
]
},
"dependencies": {
"ant-design-vue": "^2.2.0-beta.6",
"vue": "^3.0.5",
"vue-router": "4.0.10",
"vuex": "4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vitejs/plugin-vue-jsx": "^1.1.6",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.2.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.12.1",
"husky": "^6.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"moment": "^2.29.1",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"tailwindcss": "^2.2.4",
"typescript": "^4.3.4",
"vite": "^2.2.3",
"vite-plugin-compression": "^0.2.5",
"vite-plugin-style-import": "^1.0.1",
"vite-plugin-svg-icons": "^1.0.0",
"vue-tsc": "^0.0.24"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}