-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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
{
"name": "react-native-demo",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.9",
"@react-navigation/bottom-tabs": "^6.0.8",
"@react-navigation/native": "^6.0.5",
"@react-navigation/native-stack": "^6.2.3",
"axios": "^0.22.0",
"react": "^17.0.2",
"react-native": "0.66.0",
"react-native-bootsplash": "^3.2.6",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.8.0",
"react-native-simple-toast": "^1.1.3",
"react-native-webview": "^11.14.1",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.29",
"@types/react-native": "^0.65.5",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-actions": "^2.6.2",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.14.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.3",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.4.1",
"redux-devtools-extension": "^2.13.9",
"typescript": "^4.4.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"src/**/*.{js,jsx,ts,tsx,json}": "prettier --write"
}
}