-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
23 lines (22 loc) · 928 Bytes
/
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
{
"name": "react-webpack-rails-tutorial",
"version": "0.0.1",
"engines": {
"node": "5.10.0",
"npm": "3.5.0"
},
"scripts": {
"postinstall": "cd client && npm install",
"rails-server": "echo 'visit http://localhost:3000/hello_world' && foreman start -f Procfile.dev",
"build:production:client": "(cd client && npm run build:production:client --silent)",
"test": "rspec",
"lint": "(cd client && npm run lint --silent)",
"build:clean": "rm app/assets/webpack/*",
"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)",
"build:test:client": "(cd client && npm run build:test:client --silent)",
"hot-assets": "(cd client && npm run hot-assets)"
}
}