-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 923 Bytes
/
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
{
"name": "relay-mutation-example",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@kiwicom/eslint-config": "^3.1.0",
"@kiwicom/fetch": "^2.2.1",
"@kiwicom/orbit-components": "^0.33.0",
"@kiwicom/relay": "^0.27.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"flow-bin": "^0.93.0",
"graphql": "^14.1.1",
"next": "^8.0.3",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"relay-compiler": "^3.0.0",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "next",
"lint": "yarn eslint --report-unused-disable-directives .",
"relay": "yarn relay-compiler --src ./src --schema ./schema.graphql",
"graphql": "yarn babel-node scripts/getSchema.js"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@kiwicom/babel-preset-kiwicom": "^2.6.0",
"relay-devtools": "^1.4.0"
}
}