-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.3 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
{
"name": "RNFirst",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint:js": "npm run lint:eslint -- . ",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --ignore-pattern generated.*",
"validate": "npm ls",
"reset": "rm -rf ./node_modules && rm -rf $TMPDIR/react-* && rm -rf ./ios/build && yarn cache clean && npm install",
"and": "react-native run-android",
"ios": "react-native run-ios --simulator=\"iPhone 6\"",
"ipad": "react-native run-ios --simulator=\"iPad Air 2\"",
"fix": "cd node_modules/react-native/third-party/glog-*&&../../scripts/ios-configure-glog.sh"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-iphone-x-helper": "^1.2.0",
"react-native-scrollable-tab-view": "happypancake/react-native-scrollable-tab-view#master",
"react-native-simple-store": "^1.3.0",
"react-native-splash-screen": "^3.1.1",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.11.2",
"react-navigation-fluid-transitions": "^0.2.74",
"react-navigation-redux-helpers": "^2.0.5",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-observable": "0.19.0",
"rxjs": "5.5.11"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"babel-eslint": "8.2.2",
"babel-jest": "23.4.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-remove-console": "6.9.0",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "3.0.1",
"flow-bin": "^0.69.0",
"jest": "23.4.1",
"metro-react-native-babel-preset": "0.45.6",
"precommit-hook-eslint": "3.0.0",
"react-test-renderer": "16.6.3",
"schedule": "^0.4.0"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./src/Assets/Font/"
]
},
"pre-commit": [
"lint"
]
}