-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
77 lines (77 loc) · 3.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-hn",
"version": "0.0.1",
"description": "React Hacker News",
"main": "client.js",
"author": "Kristofer Baxter",
"license": "MIT",
"scripts": {
"start": "yarn certs; yarn nodemon -e js,css --config nodemon.config.json --exec 'yarn' start:node:dev-after-bundle",
"start:node": "node dist/server/restify.server.js | ./node_modules/.bin/bunyan",
"start:node:dev-after-bundle": "yarn bundle:dev; yarn start:node",
"start:h2o": "cd dist/server && h2o -c h2o.config.yaml",
"bundle:dev": "BUNDLE_ENV=dev yarn bundle:chrome; yarn bundle:server",
"bundle:all": "yarn bundle:chrome; yarn bundle:safari; yarn bundle:edge; yarn bundle:firefox; yarn bundle:fallback; yarn bundle:server",
"bundle:chrome": "BABEL_ENV=chrome node_modules/.bin/webpack --config config/webpack.chrome.js --json > dist/chrome/webpack.json",
"bundle:safari": "BABEL_ENV=safari node_modules/.bin/webpack --config config/webpack.safari.js --json > dist/safari/webpack.json",
"bundle:edge": "BABEL_ENV=edge node_modules/.bin/webpack --config config/webpack.edge.js --json > dist/edge/webpack.json",
"bundle:firefox": "BABEL_ENV=firefox node_modules/.bin/webpack --config config/webpack.firefox.js --json > dist/firefox/webpack.json",
"bundle:fallback": "BABEL_ENV=fallback node_modules/.bin/webpack --config config/webpack.fallback.js --json > dist/fallback/webpack.json",
"bundle:server": "BABEL_ENV=server node_modules/.bin/webpack --config config/webpack.server.js --json > dist/server/webpack.json",
"bundle:prod": "NODE_ENV=production yarn bundle:all;",
"test:h2o": "cd dist/server && h2o -t -c h2o.config.yaml",
"certs": "node scripts/dev-certs.js"
},
"dependencies": {
"bunyan": "^1.8.12",
"forever": "^0.15.3",
"history": "^4.7.2",
"iltorb": "^2.0.3",
"jsonfile": "^2.4.0",
"node-fetch": "^1.7.3",
"obj-str": "^1.0.0",
"object-assign-polyfill": "^0.1.0",
"promise-polyfill": "^6.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"restify": "^4.3.0",
"unfetch": "^3.0.0",
"useragent": "^2.2.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "v7.0.0-beta.37",
"@babel/core": "v7.0.0-beta.37",
"@babel/plugin-proposal-class-properties": "v7.0.0-beta.37",
"@babel/plugin-syntax-dynamic-import": "v7.0.0-beta.37",
"@babel/plugin-transform-block-scoping": "v7.0.0-beta.37",
"@babel/plugin-transform-destructuring": "v7.0.0-beta.37",
"@babel/plugin-transform-react-jsx": "v7.0.0-beta.37",
"@babel/plugin-transform-regenerator": "v7.0.0-beta.37",
"@babel/preset-env": "^7.0.0-beta.37",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-fast-async": "^6.1.2",
"babili": "^0.1.4",
"babili-webpack-plugin": "^0.1.2",
"brotli-webpack-plugin": "^0.5.0",
"browserslist": "^2.11.1",
"bundle-loader": "^0.5.5",
"chalk": "^2.3.0",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.8",
"cssnano": "^3.10.0",
"devcert-with-localhost": "^0.3.3",
"extract-text-webpack-plugin": "^3.0.2",
"nodemon": "^1.14.11",
"object.values": "^1.0.4",
"offline-plugin": "^4.8.3",
"optimize-js-plugin": "^0.0.4",
"postcss-loader": "^2.0.10",
"postcss-modules": "^1.1.0",
"style-loader": "^0.19.1",
"url-polyfill": "^1.0.10",
"webpack": "^3.10.0",
"webpack-cleanup-plugin": "^0.5.1"
}
}