forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "react-webpack-rails-tutorial",
"version": "1.1.1",
"description": "Code from the React Webpack tutorial.",
"main": "server-express.js",
"engines": {
"node": "5.0.0",
"npm": "3.3.6"
},
"scripts": {
"postinstall": "cd client && npm install",
"test": "rspec && npm run test:client && npm run lint",
"test:client": "(cd client && npm run test --silent)",
"lint": "(cd client && npm run lint --silent)",
"build:clean": "rm app/assets/webpack/*",
"build:production": "(cd client && npm run build:production --silent)",
"build:production:client": "(cd client && npm run build:production:client --silent)",
"build:production:server": "(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)",
"start": "(cd client && npm run start --silent)"
},
"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": {
},
"devDependencies": {
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
]
}