-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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": "relay_todo_app",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"update-schema": "graphql get-schema --output ./data/schema.graphql --watch",
"relay-compiler": "relay-compiler --src ./src --schema ./data/schema.graphql --watch"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.3",
"lodash": "^4.17.15",
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-gesture-handler": "^1.5.0",
"react-native-reanimated": "^1.4.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-navigation": "^4.0.10",
"react-navigation-animated-switch": "^0.3.2",
"react-navigation-stack": "^1.10.3",
"react-relay": "^5.5.5",
"react-relay-network-modern": "^4.2.0",
"relay-hooks": "1.2.4",
"relay-runtime": "^5.0.0",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/runtime": "^7.7.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"babel-plugin-relay": "^5.5.5",
"eslint": "^6.6.0",
"graphql": "^14.5.8",
"graphql-cli": "^3.0.14",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"react-test-renderer": "16.9.0",
"relay-compiler": "^5.5.5",
"relay-config": "^5.5.5"
},
"jest": {
"preset": "react-native"
}
}