-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"@vue/compiler-sfc": "^3.2.37",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.4",
"commitlint": "^17.0.3",
"commitlint-config-cz": "^0.13.3",
"copy-webpack-plugin": "^11.0.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"speed-measure-webpack-plugin": "^1.5.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"vue-loader": "^17.0.0",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build": "webpack --config build/webpack.prod.js",
"serve": "webpack serve --hot --config webpack/webpack.dev.js",
"lint": "eslint src --ext .js --cache --fix",
"prepare": "husky install",
"commit": "git-cz"
},
"dependencies": {
"vue": "^3.2.36"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}