-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.94 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.94 KB
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": "formulus-app",
"version": "1.0.0",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"preandroid": "npm run vendor:notifee",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint . --max-warnings 9999",
"lint:fix": "eslint . --fix --max-warnings 9999",
"format": "npx prettier \"**/*.{js,jsx,ts,tsx,json,css,md}\" --write",
"format:check": "npx prettier \"**/*.{js,jsx,ts,tsx,json,css,md}\" --check",
"start": "react-native start",
"test": "jest",
"generate": "tsx scripts/generateInjectionScript.ts",
"generate:api": "npx --yes @openapitools/openapi-generator-cli generate -i ../synkronus/openapi/synkronus.yaml -g typescript-axios -o src/api/synkronus/generated \"--additional-properties=supportsES6=true,useSingleRequestParameter=true,modelPropertyNaming=original\" && npm run format",
"generate_qr": "tsx scripts/generateQR.ts",
"sync:version": "node scripts/syncNativeVersion.js",
"vendor:notifee": "node scripts/vendor-notifee-core.mjs",
"prebuild": "npm run sync:version && npm run generate"
},
"dependencies": {
"@notifee/react-native": "^9.1.8",
"@nozbe/watermelondb": "^0.28.0",
"@ode/components": "file:../packages/components",
"@ode/tokens": "file:../packages/tokens",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/blur": "^4.4.1",
"@react-native-documents/picker": "^12.0.0",
"@react-native-vector-icons/fontawesome6": "^12.3.1",
"@react-native-vector-icons/material-design-icons": "^12.4.0",
"@react-native-vector-icons/material-icons": "^12.4.0",
"@react-navigation/bottom-tabs": "^7.9.0",
"@react-navigation/native": "^7.1.26",
"@react-navigation/stack": "^7.6.13",
"@testing-library/react-native": "^13.3.3",
"lucide-react-native": "^0.577.0",
"react": "19.2.4",
"react-native": "0.83.1",
"react-native-camera-kit-no-google": "^17.0.1",
"react-native-device-info": "^15.0.1",
"react-native-fs": "^2.20.0",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.30.0",
"react-native-image-picker": "^8.2.1",
"react-native-keychain": "^10.0.0",
"react-native-nitro-modules": "^0.32.0",
"react-native-nitro-sound": "^0.2.10",
"react-native-permissions": "^5.4.4",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.19.0",
"react-native-signature-canvas": "^5.0.2",
"react-native-svg": "^15.11.2",
"react-native-url-polyfill": "^3.0.0",
"react-native-webview": "^13.16.0",
"react-native-zip-archive": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/preset-env": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@openapitools/openapi-generator-cli": "^2.26.0",
"@react-native-community/cli": "20.1.2",
"@react-native-community/cli-platform-android": "20.1.2",
"@react-native-community/cli-platform-ios": "20.1.2",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/metro-config": "0.83.1",
"@react-native/typescript-config": "0.83.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-test-renderer": "^19.1.0",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-native": "^5.0.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"prettier": "3.8.1",
"react-test-renderer": "19.2.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"engines": {
"node": ">=20"
}
}