forked from insin/react-hn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "react-hn",
"version": "1.6.1",
"description": "React-powered frontend for Hacker News using its Firebase API",
"author": "Jonny Buchanan",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/insin/react-hn.git"
},
"scripts": {
"build": "mkdir -p dist && nwb build && npm run copy-manifest && npm run clean && npm run generate-sw",
"deploy": "gcloud preview app deploy",
"lint-old": "./node_modules/eslint-config-jonnybuchanan/bin/lint.js src",
"lint:fix": "./node_modules/eslint-config-jonnybuchanan/bin/lint.js --fix .",
"start": "node server.js",
"postinstall": "npm run build",
"serve": "nwb serve",
"copy-manifest": "cp public/manifest.json dist/manifest.json",
"generate-sw": "node generate-sw.js",
"clean": "rm -rf *.json.gzip dist/index.html"
},
"engines": {
"node": "6.1.0"
},
"main": "server.js",
"dependencies": {
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.0",
"ejs": "^2.4.1",
"eslint-config-jonnybuchanan": "4.6.0",
"events": "1.1.1",
"express": "^4.13.4",
"firebase": "3.4.1",
"history": "^2.1.2",
"isomorphic-fetch": "^2.2.1",
"nwb": "0.12.2",
"object-assign": "^4.1.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-router": "2.8.1",
"react-router-scroll": "^0.3.2",
"react-timeago": "3.1.3",
"reactfire": "1.0.0",
"scroll-behavior": "0.8.1",
"setimmediate": "1.0.5",
"url-parse": "^1.1.1"
},
"devDependencies": {
"html-webpack-plugin": "2.22.0",
"webpack": "1.13.2",
"workbox-build": "0.0.2"
}
}