This repository has been archived by the owner on Sep 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.9 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
{
"name": "static-html-webpack-boilerplate",
"version": "1.1.1",
"description": "Modern tooling for old-school static webpage development",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"lint:js": "./node_modules/.bin/eslint src/js/*.js",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:html": "pa11y-ci ./src/**/*.html",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"start": "webpack --config webpack.config.prod.js && http-server ./dist -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erickzhao/static-html-webpack-boilerplate.git"
},
"author": "erick zhao",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "5.12.0",
"bootstrap": "4.4.1",
"jquery": "3.4.1",
"jquery-easing": "^0.0.1",
"popper.js": "^1.16.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"cssnano": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"file-loader": "^5.0.2",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.0.0",
"http-server": "^0.12.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pa11y-ci": "^2.1.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.1.4"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}