forked from ivarprudnikov/webpack-static-html-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "webpack-static-html-pages",
"version": "1.0.0",
"description": "Example of a static website assembled by using webpack v4",
"keywords": [
"webpack",
"static",
"starter",
"html",
"pages"
],
"license": "MIT",
"dependencies": {
"normalize.css": "^8.0.1"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js --mode development",
"start:dist": "http-server dist --port ${PORT:-8080}",
"build": "webpack --config webpack.prod.js --mode production",
"preview": "npm run build && npm run start:dist",
"test": "standard",
"cy:run": "cypress run"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"cypress": "^6.0.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"http-server": "^0.12.3",
"mini-css-extract-plugin": "^1.3.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"standard": "^16.0.3",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"standard": {
"ignore": [
"cypress"
],
"env": [
"node",
"es6"
]
}
}