-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
37
38
39
{
"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)",
"express-server": "echo 'visit http://localhost:4000' && cd client && npm start",
"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",
"devDependencies": {
"eslint-config-standard": "^5.1.0",
"eslint-plugin-standard": "^1.3.2"
},
"dependencies": {
"sanitize-html": "^1.11.4"
}
}