-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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": "template-multi-html",
"version": "1.0.0",
"description": "webpack building multiple page template",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config build/webpack.hot.config.js",
"build:dev": "webpack --config build/webpack.dev.config.js",
"build:prod": "webpack --config build/webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Woshiajuana/template-multi-html.git"
},
"keywords": [
"webpack",
"multi",
"multi-html"
],
"author": "ajuan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Woshiajuana/template-multi-html/issues"
},
"homepage": "https://github.com/Woshiajuana/template-multi-html#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"art-template": "^4.13.2",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.2",
"core-js": "^3.8.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"loader-utils": "^2.0.0",
"mini-css-extract-plugin": "^1.0.0",
"node-dir": "^0.1.17",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"require-context": "^1.1.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"browserslist": [
"defaults",
"not ie <= 8",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
],
"dependencies": {
"jquery": "^3.5.1"
}
}