-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 2.79 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
{
"name": "react-native-rainbow-module-example",
"description": "Example app for react-native-rainbow-module",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"android-build": "cd android && ./gradlew assembleRelease",
"lint": "eslint ./**/*.{js,ts,tsx} --quiet --fix"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-picker/picker": "^2.4.10",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"deprecated-react-native-prop-types": "^4.0.0",
"react": "18.3.1",
"react-native": "0.75.1",
"react-native-document-picker": "^7.1.0",
"react-native-gesture-handler": "^2.20.2",
"react-native-get-random-values": "^1.11.0",
"react-native-image-picker": "^7.1.2",
"react-native-keychain": "^8.1.1",
"react-native-localization": "^2.3.1",
"react-native-pager-view": "^6.2.3",
"react-native-permissions": "^4.1.5",
"react-native-rainbow-module": "^1.10.3",
"react-native-reanimated": "^3.15.1",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^3.34.0",
"react-redux": "^9.1.0",
"recyclerlistview": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "7.20.0",
"@react-native/babel-preset": "0.75.1",
"@react-native/eslint-config": "0.75.1",
"@react-native/metro-config": "0.75.1",
"@react-native/typescript-config": "0.75.1",
"@types/jest": "^29.2.1",
"@types/metro-config": "^0.76.3",
"@types/react": "^18",
"@types/react-native-get-random-values": "^1",
"@types/react-redux": "^7.1.33",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.8.8",
"react-native-codegen": "^0.0.7",
"react-native-svg": "^15.8.0",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier/prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"packageManager": "[email protected]"
}