-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "starter's_box",
"version": "1.0.0",
"description": "An easy way to start web porject.",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"start": "npm run clean && webpack --progress && webpack-dev-server -d --hot --config webpack.config.js --watch",
"production": "npm run clean && NODE_ENV=production webpack",
"stat": "npm run clean && NODE_ENV=stat webpack",
"clean": "rimraf ./public/*"
},
"repository": {
"type": "git",
"url": "https://github.com/liginv/starters_box"
},
"bugs": {
"url": "https://github.com/liginv/starters_box/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/liginv/starters_box",
"keywords": [
"webpack_2",
"pwa",
"npm"
],
"author": "Ligin Vellakkad",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-hot-loader": "^1.3.2",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.8",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"webpack-monitor": "^1.0.13",
"workbox-webpack-plugin": "^2.1.0"
}
}