-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
50 lines (50 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
46
47
48
49
50
{
"name": "reactbkk-2.0.0",
"version": "1.0.0",
"description": "ReactBKK 2.0.0 web site",
"main": "index.js",
"repository": "[email protected]:reactbkk/2.0.0.git",
"author": "Thai Pangsakulyanont <[email protected]>",
"license": "MIT",
"engines": {
"node": "7.10.0"
},
"scripts": {
"start": "env NEXT_DEV=1 next",
"serve-static": "node static-server.js",
"build": "next build && next export",
"postbuild": "cp -Rv public/* public/.nojekyll out && sw-precache --config=sw-precache-config.js --root=out/",
"deploy": "gh-pages --src '{.nojekyll,**/*}' -d out -m \"Deploy $(git rev-parse HEAD) to GitHub pages [ci skip]\"",
"lint": "eslint *.js components pages static public",
"heroku-postbuild": "env NEXT_DEV=1 yarn run build",
"heroku-start": "yarn run serve-static"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-inline-react-svg": "^0.4.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"gh-pages": "^1.0.0",
"sw-precache": "^5.1.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"express": "^4.15.3",
"next": "beta",
"normalize.css": "^6.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-countdown-now": "^1.2.0",
"react-dom": "^15.5.4",
"react-scroll": "^1.5.2",
"react-transition-group": "^1.1.3"
}
}