-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.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
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
{
"name": "FIGRD",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest --detectOpenHandles",
"prettier-fix": "prettier --write **/*.js",
"prettier-check": "prettier --list-different **/*.js",
"lint-fix": "eslint --fix .",
"lint-check": "eslint .",
"rename": "react-native-rename",
"postinstall": "npx jetify",
"ios": "react-native run-ios",
"android": "react-native run-android",
"iphone8": "react-native run-ios --simulator='iPhone 8'",
"iphone5s": "react-native run-ios --simulator='iPhone 5s'"
},
"dependencies": {
"axios": "^0.19.0",
"eslint-config-rallycoding": "^3.2.0",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-native": "0.60.5",
"react-native-countdown-component": "^2.6.0",
"react-native-gesture-handler": "^1.3.0",
"react-native-haptic-feedback": "^1.11.0",
"react-native-inset-shadow": "^1.0.3",
"react-native-responsive-screen": "^1.3.0",
"react-native-sound": "^0.11.0",
"react-native-splash-screen": "^3.2.0",
"react-navigation": "^3.6.0",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-form-saga": "^0.2.0",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.2",
"redux-thunk": "^2.2.0",
"reduxsauce": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.5.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.5.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.16.4",
"react-native-rename": "^2.4.1",
"react-test-renderer": "16.8.6",
"redux-devtools-extension": "^2.13.2"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!react-native)/.+"
]
}
}