-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "react-relay-starter",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"babel-plugin-relay": "^2.0.0-rc.2",
"faker": "^4.1.0",
"flow-bin": "^0.98.1",
"graphql": "^14.3.0",
"graphql-tools": "^4.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-relay": "^4.0.0",
"react-scripts": "3.0.1"
},
"scripts": {
"dev": "react-scripts start",
"mock": "sh -ac 'REACT_APP_MOCK=true; yarn dev'",
"relay": "relay-compiler --watchman false --src ./src --schema ./src/schema.graphql",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"flow": "flow",
"lint": "eslint src --fix"
},
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"relay-compiler": "^4.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}