-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 2.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "AwesomeProject",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.17.9",
"@react-native-masked-view/masked-view": "0.2.7",
"@react-navigation/native": "6.0.11",
"@react-navigation/stack": "6.2.2",
"@reduxjs/toolkit": "1.8.4",
"axios": "^0.27.2",
"i18next": "21.8.0",
"lodash": "^4.17.21",
"react": "18.1.0",
"react-i18next": "^11.16.9",
"react-native": "0.70.9",
"react-native-flipper": "0.159.0",
"react-native-indicators": "^0.17.0",
"react-native-localize": "2.2.3",
"react-native-screens": "^3.13.1",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "13.0.0",
"react-native-vector-icons": "^9.1.0",
"react-native-version-number": "^0.3.6",
"react-redux": "8.0.2",
"redux-flipper": "^2.0.1",
"redux-persist": "^6.0.0",
"redux-saga": "1.2.0"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/preset-env": "7.18.2",
"@babel/runtime": "7.18.3",
"@forward-software/react-native-toolbox": "^3.0.0",
"@react-native-community/eslint-config": "3.0.3",
"@react-native-community/eslint-plugin": "1.2.0",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@types/jest": "28.1.4",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-native": "0.69.5",
"@types/react-native-indicators": "^0.16.2",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-redux": "^7.1.23",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"babel-jest": "28.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "13.0.3",
"madge": "^5.0.1",
"metro-react-native-babel-preset": "0.71.1",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"react-native-debugger-open": "^0.3.25",
"react-test-renderer": "18.2.0",
"remote-redux-devtools": "^0.5.16",
"shx": "^0.3.4",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint",
"npm run prettier-format:staged",
"npm run prettier-check:staged"
]
},
"madge": {
"tsConfig": "./tsconfig.json",
"fileExtensions": "ts",
"excludeRegExp": [
".*\\.test\\.ts$",
".*\\.test\\.tsx$"
],
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}