-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.11 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
{
"name": "html5-template",
"version": "1.5.0",
"description": "A no-frills HTML5 starter template with the power of webpack",
"main": "app.js",
"scripts": {
"dev:open": "wait-on tcp:8080 && open-cli http://localhost:8080",
"dev:run": "nodemon --watch app.js --exec webpack-dev-server --config=webpack.dev.config.js",
"start": "run-p dev:open dev:run",
"prebuild": "node cleanBuild.js",
"build": "webpack --config=webpack.prod.config.js",
"build:modernizr": "modernizr -c modernizr-config.json -d ./src/js/"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"jquery": "^3.6.0",
"modernizr": "^3.11.8",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"cssnano": "^5.0.8",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"image-webpack-loader": "^7.0.1",
"mini-css-extract-plugin": "^2.3.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"sass": "^1.39.2",
"sass-loader": "^12.1.0",
"wait-on": "^6.0.0",
"webpack": "^5.52.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"author": {
"name": "Ayan Dey",
"url": "https://www.linkedin.com/in/dey-ayan/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whimsicaldreamer/Html5-template.git"
},
"keywords": [
"html",
"html5",
"template",
"starter template",
"webpack",
"html5 template",
"boilerplate",
"css",
"javascript"
]
}