-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.17 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
{
"name": "react-native-app-helpers",
"description": "General tools we use to build React Native applications.",
"version": "0.0.0",
"engines": {
"node": ">=16.11.1"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/jameswilddev/react-native-app-helpers"
},
"publishConfig": {
"access": "public"
},
"private": false,
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/react": "~18.2.79",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"del-cli": "^5.0.0",
"eslint": "^8.47.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"expo-doctor": "^1.1.2",
"jest": "^29.4.0",
"jest-expo": "~51.0.3",
"metro-react-native-babel-preset": "0.67.0",
"npm-run-all": "^4.1.5",
"react": "18.2.0",
"react-native": "0.74.5",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"scripts": {
"buildClean": "del-cli \"**/*.js\" \"**/*.d.ts\" \"!**/node_modules/**/*\"",
"buildExpoDoctor": "expo-doctor",
"buildLint": "eslint \"**/*.ts\" \"**/*.tsx\"",
"buildLintFix": "eslint --fix \"**/*.ts\" \"**/*.tsx\"",
"buildTypeScript": "tsc",
"buildJest": "jest",
"test": "npm-run-all buildClean buildExpoDoctor buildLintFix buildTypeScript buildJest"
},
"files": [
"**/index.js",
"**/index.d.ts"
],
"types": "index.d.ts",
"sideEffects": false,
"dependencies": {
"events": "3.3.0",
"expo": "~51.0.26",
"expo-constants": "~16.0.2",
"expo-crypto": "~13.0.2",
"expo-file-system": "~17.0.1",
"expo-image-picker": "~15.0.7",
"expo-intent-launcher": "~11.0.1",
"expo-media-library": "~16.0.4",
"expo-secure-store": "~13.0.2",
"filter-validate-email": "^1.1.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-safe-area-context": "4.10.5",
"sentry-expo": "~7.0.0"
}
}