-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"name": "webpack-setup-multiple-pages",
"version": "1.0.0",
"description": "Multiple Pages Setup with Webpack and apply a template.",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"eslint": "eslint ./",
"eslint:fix": "eslint ./ --fix",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-import": "^12.0.0",
"postcss-loader": "^2.1.6",
"postcss-preset-env": "^6.0.3",
"sass-loader": "^7.0.3",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/huynhsamha/webpack-setup-multiple-pages.git"
},
"homepage": "https://github.com/huynhsamha/webpack-setup-multiple-pages#readme",
"author": "huynhsamha",
"license": "MIT",
"bugs": {
"url": "https://github.com/huynhsamha/webpack-setup-multiple-pages/issues"
}
}