-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.19 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
{
"name": "Eattery",
"version": "0.0.1",
"private": true,
"main": "lib/index.js",
"scripts": {
"android:ports": "adb reverse tcp:8081 tcp:8081 && adb reverse tcp:4000 tcp:4000",
"android:apk": "cd android && ./gradlew assembleRelease",
"android:install": "adb install android/app/build/outputs/apk/app-release.apk",
"android:clean": "cd android && ./gradlew clean",
"clear": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm 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",
"flow": "flow"
},
"dependencies": {
"babel-preset-react-native": "2.1.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"glamorous-native": "^1.4.0",
"install": "^0.11.0",
"lodash": "^4.17.4",
"moment-timezone": "^0.5.14",
"npm": "^6.0.0",
"react": "16.3.1",
"react-native": "0.55.3",
"react-native-camera": "^1.1.2",
"react-native-elements": "^0.19.1",
"react-native-nfc-manager": "^0.4.2",
"react-native-qrcode-scanner": "^1.0.1",
"react-native-star-rating": "^1.0.9",
"react-native-vector-icons": "^4.6.0",
"react-native-watson": "^1.6.2",
"react-navigation": "^1.5.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "19.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^2.3.2",
"flow-bin": "^0.63.1",
"jest": "18.1.0",
"lint-staged": "^3.4.0",
"prettier": "^1.10.2",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native"
}
}