-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "sell_it_app",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.2",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.3.1"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios5": "react-native run-ios --simulator='iPhone 5'",
"ios7": "react-native run-ios --simulator='iPhone 7'",
"ios7+": "react-native run-ios --simulator='iPhone 7 Plus'",
"iosPadAir2": "react-native run-ios --simulator='iPad Air 2'",
"test": "jest"
},
"rnpm": {
"assets": [
"./assets/Fonts"
]
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"axios": "^0.21.1",
"react": "16.3.1",
"react-native": "~0.55.2",
"react-native-extended-stylesheet": "^0.9.0",
"react-native-modal": "^6.5.0",
"react-native-navigation": "^1.1.480",
"react-native-vector-icons": "^5.0.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-promise": "^0.6.0"
}
}