-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vue2.x-webpack5.x",
"version": "1.0.0",
"main": "index.js",
"author": "Potter <aa4790139@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --progress --config build/webpack.dev.conf.js",
"build": "cross-env node build/index.js ENV_TYPE=1 platform=pc",
"build:analyzer": "cross-env node build/index.js ENV_TYPE=1 platform=pc --bundle-analyzer",
"dev:build": "cross-env node build/index.js ENV_TYPE=1 platform=pc mode=development",
"test": "webpack --config build/webpack.prod.conf.js",
"posttest": "webpack --config webpack.config.js --write",
"eslint": "eslint --ext .js,.vue src",
"prettier": "prettier --check src/**/*.{js,vue} --write",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier && yarn eslint --fix",
"commit": "cz",
"commit-msg": "node script/verify-commit-msg.js",
"release": "standard-version"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"core-js": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.4.2",
"@babel/runtime-corejs3": "^7.17.2",
"babel-loader": "^8.0.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-vue": "^2.0.2",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.4",
"cross-env": "^5.2.0",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"cssnano": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^9.19.2",
"filemanager-webpack-plugin": "^8.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^6.0.1",
"ora": "^1.2.0",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"process": "^0.11.10",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"sass-resources-loader": "^2.2.4",
"shelljs": "^0.7.6",
"speed-measure-webpack-plugin": "^1.5.0",
"standard-version": "^9.3.2",
"svg-sprite-loader": "^6.0.11",
"terser-webpack-plugin": "^5.3.1",
"thread-loader": "^3.0.4",
"vue-eslint-parser": "^7.11.0",
"vue-loader": "^15.11.1",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "2.7.15",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.4.0",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.14.8"
},
"browserslist": [
"last 1 version",
"> 1%",
"not IE <= 10"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,vue}": [
"yarn lint:fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}