-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 836 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-cra",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-plugin-relay": "^1.7.0-rc.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-relay": "^1.7.0-rc.1",
"react-scripts": "^2.0.0-next.3e165448",
"relay-compiler": "^1.7.0-rc.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"compile-graphql": "relay-compiler --schema scripts/schema.graphql --src src",
"fetch-schema": "node scripts/fetch-schema.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}