-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.82 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
51
52
53
{
"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 || ^8.0.0",
"npm": "^4.4.4 || ^5.0.0",
"yarn": "^1.0.0"
},
"scripts": {
"postinstall": "cd client && yarn install",
"test": "rspec && yarn run test:client && yarn run lint",
"test:client": "(cd client && yarn run --silent test)",
"lint": "(cd client && yarn run --silent lint)",
"build:clean": "rm app/assets/webpack/*",
"build:production": "(cd client && yarn run --silent build:production)",
"build:production:client": "(cd client && yarn run --silent build:production:client)",
"build:production:server": "(cd client && yarn run --silent build:production:server)",
"build:client": "(cd client && yarn run --silent build:client)",
"build:server": "(cd client && yarn run --silent build:server)",
"build:dev:client": "(cd client && yarn run --silent build:dev:client)",
"build:dev:server": "(cd client && yarn run --silent build:dev:server)",
"hot-assets": "(cd client && yarn run hot-assets)",
"start": "(cd client && yarn run --silent start)"
},
"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": {
"material-ui": "^1.0.0-beta.19",
"pickadate": "^3.5.6",
"styled-components": "^2.2.3"
},
"devDependencies": {},
"cacheDirectories": [
"node_modules",
"client/node_modules"
]
}