-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "next-hn-prime-kit",
"version": "1.0.1",
"engines": {
"node": "^8.1.0"
},
"scripts": {
"dev": "next",
"lint": "xo",
"build:next": "chmod -R u+x node_modules/next/dist/bin && next build && node generate-sw.js",
"build": "npm run build:next --preact",
"build:report": "npm run build:next --report && webpack-bundle-analyzer .next/stats.json",
"build:preact": "npm run build:next --preact",
"start:next": "next start",
"start": "NODE_ENV=production node server.js",
"deploy": "npm version patch && now --name=next-hnpwa --public"
},
"dependencies": {
"compression": "^1.6.2",
"firebase": "^4.1.2",
"firebase-hackernews": "^2.9.0",
"isomorphic-fetch": "^2.2.1",
"next": "beta",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"react": "^15.6.0",
"react-dom": "^15.6.0"
},
"devDependencies": {
"express": "^4.15.3",
"globby": "^6.1.0",
"load-json-file": "^2.0.0",
"webpack-bundle-analyzer": "^2.8.2",
"workbox-build": "^1.0.1",
"workbox-webpack-plugin": "^1.0.1",
"xo": "^0.18.2"
},
"xo": {
"semicolon": false,
"env": {
"browser": true
},
"globals": [
"window",
"performance",
"firebase"
]
}
}