-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.58 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
73
{
"name": "SwagLabsMobileApp",
"version": "1.0.0",
"private": true,
"scripts": {
"clear.cache": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/metro* && rm -rf $TMPDIR/haste-*",
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint .",
"prepush": "npm run lint",
"test": "jest",
"android.local": "./node_modules/.bin/wdio ./tests/e2e/config/wdio.android.local.conf.js",
"android.rdc": "./node_modules/.bin/wdio ./tests/e2e/config/wdio.android.rdc.conf.js",
"android.release": "cd android && ./gradlew assembleRelease",
"ios.local": "./node_modules/.bin/wdio ./tests/e2e/config/wdio.ios.local.conf.js",
"ios.rdc": "./node_modules/.bin/wdio ./tests/e2e/config/wdio.ios.rdc.conf.js",
"ios.clear.build": "npm run clear.cache && rm -rf ./ios/build/Build/Products/Release-iphonesimulator",
"ios.release": "react-native run-ios --configuration Release",
"ios.sim.build": "npm run ios.clear.build && npm run ios.release",
"postversion": "react-native-version"
},
"dependencies": {
"i18n-js": "^3.1.0",
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.4",
"react-native-elements": "1.0.0-beta7",
"react-native-languages": "^3.0.1",
"react-native-modal-selector": "1.0.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "6.0.2",
"react-navigation": "2.18.2",
"sync-storage": "0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@babel/traverse": "^7.2.3",
"@babel/types": "^7.2.2",
"@wdio/cli": "^5.6.2",
"@wdio/jasmine-framework": "^5.6.0",
"@wdio/local-runner": "^5.6.2",
"@wdio/sauce-service": "^5.6.0",
"@wdio/spec-reporter": "^5.6.0",
"@wdio/sync": "^5.6.0",
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"eslint": "^5.12.0",
"eslint-config-fb-strict": "^23.2.0",
"eslint-config-fbjs": "^2.1.0",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-react-native": "^3.5.0",
"husky": "^1.3.1",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.49.0",
"node-fetch": "^2.3.0",
"react-native-version": "^2.6.8",
"react-test-renderer": "16.6.0-alpha.8af6728",
"webdriverio": "^5.6.2"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}