-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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": "antnow",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "tslint src/**/*.ts* --project tsconfig.json",
"postinstall": "rndebugger-open"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.3",
"@react-navigation/native": "^5.9.0",
"@react-navigation/stack": "^5.13.0",
"@types/redux-saga": "^0.10.5",
"axios": "^0.21.1",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-debugger-open": "^0.3.25",
"react-native-gesture-handler": "^1.9.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.16.1",
"react-native-vector-icons": "^7.1.0",
"react-navigation": "^4.4.3",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.45",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-redux": "^7.1.15",
"@types/redux": "^3.6.0",
"babel-jest": "^26.6.3",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"nodemon": "^2.0.7",
"react-test-renderer": "16.13.1",
"redux-devtools-extension": "^2.13.8",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-etc": "^1.13.9",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"tsutils": "^3.19.1",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
}
}