-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "relay-modern-optimistic-update",
"version": "1.0.0",
"description": "Benchmark of updating data with/without Relay Modern optimistic update",
"scripts": {
"start": "babel-node ./server.js",
"build": "relay-compiler --src ./client/ --schema ./data/schema.graphql",
"update-schema": "babel-node ./scripts/updateSchema.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasbesen/relay-modern-optimistic-update.git"
},
"author": "lucasbesen",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasbesen/relay-modern-optimistic-update/issues"
},
"dependencies": {
"@material-ui/core": "^1.5.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-relay": "^1.6.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-relay": "^0.5.5",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-relay": "^1.6.2",
"styled-components": "^3.4.2",
"webpack": "^4.16.5",
"webpack-dev-server": "^3.1.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"relay-compiler": "^1.6.2"
}
}