-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.64 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
{
"name": "hnpwa-wc",
"version": "1.0.0",
"description": "hacker news pwa using web components",
"main": "index.js",
"scripts": {
"start": "webpack-dashboard -- node ./bin/server.js",
"build": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.config.production.js --progress && npm run gen-sw",
"analyze": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.config.production.js --profile --json > profile.json && webpack-bundle-analyzer profile.json",
"gen-sw": "node generate-sw.js",
"lint": "standard src --ignore-path .gitignore --fix"
},
"author": "teno siswono",
"license": "ISC",
"dependencies": {
"@0xcda7a/redux-es6": "^3.7.2",
"@webcomponents/webcomponentsjs": "^1.0.22",
"express": "^4.16.2",
"redux-thunk": "^2.2.0",
"unfetch": "^3.0.0"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"standard": "^10.0.3",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dashboard": "^1.0.2",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1",
"workbox-build": "^2.1.2"
}
}