-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.91 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
74
75
76
77
78
79
{
"name": "pizza-delivery",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "standard --verbose",
"fixcode": "standard --fix"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"axios": "^0.21.1",
"date-fns": "^2.8.1",
"prop-types": "^15.7.2",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-dotenv": "^0.2.0",
"react-native-gesture-handler": "^1.5.2",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^1.4.0",
"react-native-redux-toast": "^1.0.3",
"react-native-screens": "^2.0.0-alpha.19",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^1.10.3",
"react-redux": "^7.1.3",
"reactotron-react-native": "^4.0.2",
"reactotron-redux": "^3.1.2",
"reactotron-redux-saga": "^4.2.3",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reduxsauce": "^1.1.1",
"seamless-immutable": "^7.1.4",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/runtime": "^7.7.6",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"react-test-renderer": "16.9.0",
"standard": "^14.3.1"
},
"jest": {
"preset": "react-native"
},
"standard": {
"parser": "babel-eslint",
"rules": {
"camelcase": "off"
},
"globals": [
"describe",
"test",
"jest",
"expect",
"__DEV__",
"FormData",
"beforeEach",
"it",
"before",
"after",
"afterEach",
"waitFor",
"alert"
],
"ignore": [
"ignite/**",
"metro.config.js"
]
}
}