-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.88 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
{
"name": "webpack-multi-page",
"version": "1.0.0",
"description": "webpack多页面脚手架",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode=development --config=build/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --mode=production --config=build/webpack.prod.js",
"fix": "eslint --fix --cache --format=pretty build src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gexin1/webpack-multi-page"
},
"author": "river",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"autoprefixer": "^9.7.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-formatter-pretty": "^3.0.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-html": "^6.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"postcss-pxtorem": "^5.1.1",
"prettier": "^2.0.4",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^8.0.2",
"sass-resources-loader": "^2.0.1",
"speed-measure-webpack-plugin": "^1.3.3",
"style-loader": "^1.1.3",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"thread-loader": "^2.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"underscore-template-loader": "^1.0.0",
"url-loader": "^4.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.9.2",
"amfe-flexible": "^2.2.1",
"bootstrap": "^3.4.1",
"eslint-loader": "^4.0.0",
"eventbusjs": "^0.2.0",
"jquery": "^1.11.1",
"nprogress": "^0.2.0",
"qs": "^6.9.3",
"vconsole": "^3.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,scss,html}": [
"eslint --fix --cache --format=pretty",
"prettier --ignore-path .eslintignore --single-quote --write",
"git add"
]
}
}