forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.7 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
{
"name": "react-webpack-rails-tutorial",
"version": "2.0.0",
"description": "ShakaCode's example of React on Rails plus React Native",
"main": "server-express.js",
"engines": {
"node": "7.8.0",
"npm": "4.4.4",
"yarn": "0.22.0"
},
"scripts": {
"postinstall": "cd client && yarn install",
"test": "rspec && yarn run test:client && yarn run lint",
"test:client": "(cd client && yarn run test --silent)",
"lint": "(cd client && yarn run lint --silent)",
"build:clean": "rm app/assets/webpack/*",
"build:production": "(cd client && yarn run build:production --silent)",
"build:production:client": "(cd client && yarn run build:production:client --silent)",
"build:production:server": "(cd client && yarn run build:production:server --silent)",
"build:client": "(cd client && yarn run build:client --silent)",
"build:server": "(cd client && yarn run build:server --silent)",
"build:dev:client": "(cd client && yarn run build:dev:client --silent)",
"build:dev:server": "(cd client && yarn run build:dev:server --silent)",
"hot-assets": "(cd client && yarn run hot-assets)",
"start": "(cd client && yarn run start --silent)"
},
"repository": {
"url": "https://github.com/shakacode/react-webpack-rails-tutorial.git",
"type": "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"
]
}