This repository was archived by the owner on Apr 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "static-html-webpack-boilerplate",
"version": "1.1.0",
"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",
"start: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",
"devDependencies": {
"autoprefixer": "^7.2.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.0.0",
"http-server": "^0.10.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"pa11y-ci": "^2.1.1",
"postcss-loader": "^2.1.6",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.1",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"@fortawesome/fontawesome-free": "^5.3.1",
"rellax": "^1.7.0",
"scrollreveal": "^4.0.4",
"smoothscroll": "^0.4.0"
}
}