-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
112 lines (112 loc) · 3.77 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "SQL-Play",
"version": "2.5.24",
"type": "module",
"private": false,
"description": "A simple and beautiful SQL playground",
"scripts": {
"postversion": "react-native-version",
"detox-setup": "detox clean-framework-cache && detox build-framework-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"clean": "react-native-clean-project",
"check-dependencies": "rnx-dep-check",
"fix-dependencies": "rnx-dep-check --write",
"deploy:android": "cd android && bundle exec fastlane beta && cd ..",
"test": "jest",
"lint": "eslint .",
"e2e:build": "detox build --configuration",
"e2e:test": "detox test --configuration",
"test:examples": "vitest run tests/examples.spec.ts"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4",
"@react-native-admob/admob": "^2.0.1",
"@rnx-kit/dep-check": "^1.12.18",
"@sentry/cli": "^2.5.0",
"@sentry/react-native": "^4.2.0",
"@types/mocha": "^9.1.1",
"react": "18.0.0",
"react-native": "0.69.4",
"react-native-bootsplash": "^4.2.3",
"react-native-device-info": "^10.0.2",
"react-native-dialog": "^9.2.2",
"react-native-dynamic": "^1.0.0",
"react-native-file-access": "^2.4.3",
"react-native-fs": "^2.18.0",
"react-native-gesture-handler": "^2.4.2",
"react-native-iap": "^8.3.0",
"react-native-material-menu": "^2.0.0",
"react-native-quick-sqlite": "^4.0.1",
"react-native-reanimated": "^2.5.0",
"react-native-safe-area-context": "^4.3.1",
"react-native-sensitive-info": "^6.0.0-alpha.9",
"react-native-share": "^7.6.6",
"react-native-snackbar": "^2.4.0",
"react-native-sqlite-storage": "^6.0.1",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^12.1.1",
"react-native-swipe-gestures": "^1.0.5",
"react-native-syntax-highlighter": "^2.1.0",
"react-native-table-component": "^1.2.2",
"react-native-text-size": "git+https://github.com/Naturalclar/react-native-text-size/#fix/podInstall",
"react-native-vector-icons": "^9.2.0",
"sp-react-native-in-app-updates": "^1.1.7"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@react-native-community/eslint-config": "^3.0.3",
"@testing-library/jest-native": "^4.0.5",
"@testing-library/react-native": "^11.0.0",
"@types/better-sqlite3": "^7.6.0",
"@types/jest": "^28.1.6",
"@types/react": "18.0.15",
"@types/react-native": "^0.69.3",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-native-sqlite-storage": "^5.0.2",
"@types/react-native-vector-icons": "^6.4.11",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^28.1.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"better-sqlite3": "^7.6.2",
"detox": "19.8.2",
"eslint": "^8.20.0",
"metro-react-native-babel-preset": "^0.70.3",
"mocha": "^10.0.0",
"react-native-clean-project": "^4.0.1",
"react-native-codegen": "^0.70.3",
"react-native-dotenv": "^3.3.1",
"react-native-typescript-transformer": "^1.2.13",
"react-native-version": "^4.0.0",
"react-test-renderer": "18.0.0",
"typescript": "^4.7.4",
"vitest": "^0.22.1",
"webdriverio": "^7.20.7"
},
"jest": {
"preset": "react-native"
},
"rnx-kit": {
"reactNativeVersion": "^0.69.0",
"kitType": "app",
"capabilities": [
"animation",
"babel-preset-react-native",
"core",
"core-android",
"core-ios",
"filesystem",
"gestures",
"react",
"react-test-renderer",
"safe-area",
"sqlite",
"svg"
]
}
}