forked from quinn/empirical-grammar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.55 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "react_on_rails",
"version": "2.0.0-rc.2",
"description": "example of server rendering",
"main": "server.js",
"engines": {
"node": "4.4.5",
"npm": "3.9.5"
},
"cacheDirectories": [
"client/node_modules"
],
"scripts": {
"postinstall": "cd ./client && npm install",
"gulp": "cd ./client && npm run gulp",
"test": "npm run build:test && npm run lint && bundle exec rake spec",
"lint": "cd client && npm run lint",
"install-react-on-rails": "cd client && npm run install-react-on-rails",
"build:clean": "rm app/assets/webpack/* || true",
"build:test": "cd client && npm run build:test",
"build:production:client": "(echo 'prod client assets' && cd client && npm run build:production:client --silent)",
"build:production:server": "(echo 'prod server assets' && 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"
},
"dependencies": {
"tabslet": "^1.7.3"
}
}