This repository was archived by the owner on Sep 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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
{
"name": "webpack-static-html-pages",
"version": "2.0.0",
"repository": {
"type": "git",
"url" : "https://github.com/ivarprudnikov/webpack-static-html-pages"
},
"description": "Example of a static website assembled by using webpack v5",
"keywords": [
"webpack",
"static",
"starter",
"html",
"pages"
],
"license": "MIT",
"dependencies": {
"normalize.css": "^8.0.1"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"start:dist": "http-server dist --port ${PORT:-8080}",
"build": "webpack --config webpack.prod.js",
"preview": "npm run build && npm run start:dist",
"test": "standard",
"cy:run": "cypress run"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"cypress": "^9.5.2",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.0",
"mini-css-extract-plugin": "^2.6.0",
"standard": "^16.0.4",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"standard": {
"ignore": [
"cypress"
],
"env": [
"node",
"es6"
]
}
}