forked from shakacode/react_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "react_on_rails",
"version": "2.0.0-rc.2",
"description": "example of server rendering",
"main": "server.js",
"engines": {
"node": "4.2.0"
},
"scripts": {
"postinstall": "cd ./client && npm install",
"gulp": "cd ./client && npm run gulp",
"test": "npm run build:test && npm run lint && rspec",
"lint": "cd client && npm run lint",
"install-react-on-rails": "cd client && npm run install-react-on-rails",
"build:clean": "rm -r app/assets/webpack/* || true",
"build:production:client": "(cd client && npm run build:production:client --silent)",
"build:production:server": "(cd client && npm run build:production:server --silent)",
"build:client": "(cd client && npm run build:client --silent",
"build:server": "(cd client && npm run build:server --silent)",
"build:dev:client": "(cd client && npm run build:dev:client --silent)",
"build:dev:server": "(cd client && npm run build:dev:server --silent)",
"hot-assets": "(cd client && npm run hot-assets)"
},
"repository": {
"type": "git",
"url": "https://github.com/shakacode/react_on_rails.git"
},
"keywords": [
"react",
"rails",
"server",
"rendering"
],
"author": "justin808",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakacode/react_on_rails/issues"
},
"devDependencies": {
},
"dependencies": {
}
}