-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
69 lines (69 loc) · 2.21 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
{
"name": "reactconfbr-app",
"description": "React Native SP Events App",
"version": "0.0.1",
"dependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"hoist-non-react-statics": "^2.5.0",
"idx": "^2.3.0",
"moment": "^2.22.1",
"react": "16.3.1",
"react-native": "0.55.1",
"react-native-keyboard-spacer": "^0.4.1",
"react-native-linear-gradient": "^2.4.0",
"react-native-modal": "^6.0.0",
"react-native-modal-datetime-picker": "^5.1.0",
"react-native-text-input-mask": "^0.7.0",
"react-native-timeline-listview": "^0.2.3",
"react-navigation": "^1.5.11",
"react-relay": "1.5.0",
"styled-components": "^3.2.6"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "19.0.0",
"babel-plugin-relay": "1.5.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.2",
"jest": "18.1.0",
"lint-staged": "^3.4.0",
"pre-commit": "^1.2.2",
"prettier": "^1.2.2",
"react-devtools": "^2.1.0",
"react-test-renderer": "16.0.0-alpha.6",
"relay-compiler": "1.5.0"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 120",
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"private": true,
"repository": {
"url": "[email protected]:sibelius/ReactNavigationRelay.git",
"type": "git"
},
"scripts": {
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 120",
"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"
}
}