-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.17 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": "graphene-tutorial",
"version": "0.1.0",
"description": "Tutorial for graphene and relay",
"main": "index.js",
"scripts": {
"build": "webpack --display-error-details"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjtamlyn/graphene-tutorial.git"
},
"author": "Marc Tamlyn",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mjtamlyn/graphene-tutorial/issues"
},
"homepage": "https://github.com/mjtamlyn/graphene-tutorial#readme",
"dependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin": "^0.9.1",
"babel-relay-plugin-loader": "^0.9.0",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-relay": "^0.9.1",
"webpack": "^1.13.1",
"webpack-bundle-tracker": "0.0.93"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"babel-relay-plugin-loader"
]
},
"metadata": {
"graphql": {
"schema": "./schema.json"
}
}
}