forked from facebookarchive/relay-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1 KB
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
{
"name": "relay-starter-kit",
"private": true,
"description": "A quick way to get up and running with Relay",
"repository": "facebook/relay-starter-kit",
"version": "0.1.0",
"scripts": {
"start": "npm run start-graphql & npm run start-node",
"start-node": "babel-node ./server.js",
"update-schema": ". server/env/bin/activate && cd server && python scripts/update_schema.py",
"start-graphql": ". server/env/bin/activate && cd server && python app.py",
"install-python-deps": "virtualenv -p python3.5 server/env && source server/env/bin/activate && pip install -r server/requirements.txt"
},
"dependencies": {
"babel": "5.8.21",
"babel-loader": "5.3.2",
"babel-relay-plugin": "^0.3.0",
"classnames": "^2.1.3",
"express": "^4.13.1",
"express-graphql": "^0.4.0",
"graphql": "^0.4.7",
"graphql-relay": "^0.3.3",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-relay": "^0.4.0",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1"
}
}