-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "react-webpack-rails-tutorial",
"version": "1.1.1",
"description": "Built using the react_on_rails generator. Allows you to run npm install from root.",
"main": "server.js",
"engines": {
"node": "4.2.0",
"npm": "3.3.6"
},
"scripts": {
"postinstall": "cd client && npm install",
"test": "rspec && (cd client && npm run lint)",
"node-server-hot": "echo 'visit http://localhost:4000' && cd client && npm start",
"rails-server-hot": "echo 'visit http://localhost:3000/hello_world' && foreman start -f Procfile.dev-hot",
"rails-server": "echo 'visit http://localhost:3000/hello_world' && foreman start -f Procfile.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/shakacode/react-webpack-rails-tutorial.git"
},
"keywords": [
"react",
"tutorial",
"comment",
"example"
],
"author": "justin808",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakacode/react-webpack-rails-tutorial/issues"
},
"homepage": "https://github.com/shakacode/react-webpack-rails-tutorial",
"dependencies": {
"react-on-rails": "^2.0.2"
}
}