forked from shakacode/react_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.18 KB
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
{
"name": "react_on_rails",
"description": "example of server rendering",
"main": "server.js",
"scripts": {
"postinstall": "cd ./client && yarn install",
"test": "yarn run build:test && yarn run lint && rspec",
"lint": "cd client && yarn run lint",
"build:clean": "rm -rf public/webpack || true",
"build:test": "(cd client && yarn run build:test)",
"build:production:client": "(cd client && yarn run build:production:client)",
"build:production:server": "(cd client && yarn run build:production:server)",
"build:client": "(cd client && yarn run build:client)",
"build:server": "(cd client && yarn run build:server)",
"build:dev:client": "(cd client && yarn run build:dev:client)",
"build:dev:server": "(cd client && yarn run build:dev:server)",
"hot-assets": "(cd client && yarn 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": {}
}