-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
72 lines (72 loc) · 2.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ReactNavigationRelay",
"description": "React Navigation + Relay working example",
"version": "0.0.1",
"author": {
"name": "Sibelius Seraphini",
"email": "[email protected]",
"url": "https://github.com/sibelius"
},
"dependencies": {
"hoist-non-react-statics": "^3.0.1",
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.3",
"react-navigation": "2.18.0",
"react-relay": "1.6.2",
"styled-components": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"babel-plugin-relay": "1.6.2",
"eslint": "^5.7.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.5.0",
"graphql": "^14.0.2",
"graphql-query-test-mock": "^0.9.0",
"isomorphic-fetch": "^2.2.1",
"jest": "23.6.0",
"lint-staged": "^7.3.0",
"metro-react-native-babel-preset": "0.47.1",
"nock": "^10.0.1",
"prettier": "^1.14.3",
"react-devtools": "^3.4.2",
"react-native-testing-library": "^1.3.0",
"react-test-renderer": "16.5.2",
"relay-compiler": "1.6.2",
"relay-devtools": "^1.4.0"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 80",
"git add"
]
},
"pre-commit": "lint:staged",
"private": true,
"repository": {
"url": "[email protected]:sibelius/ReactNavigationRelay.git",
"type": "git"
},
"scripts": {
"android:apk": "cd android && ./gradlew assembleRelease",
"android:install": "adb install android/app/build/outputs/apk/app-release.apk",
"clear": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"devtools": "react-devtools",
"lint": "eslint src",
"lint:staged": "lint-staged",
"relay": "relay-compiler --src ./src --schema data/schema.graphql",
"relay:watch": "yarn relay -- --watch",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
}
}