-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.99 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.99 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
{
"name": "react-native-nitro-storage-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"setup": "node scripts/setup.js",
"publish-package": "node scripts/publish.js",
"publish-package:dry": "node scripts/publish.js --dry-run",
"build": "turbo run build",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "turbo run format:check",
"clean": "turbo run clean",
"codegen": "turbo run codegen",
"typecheck": "turbo run typecheck",
"test:types": "turbo run test:types --filter=react-native-nitro-storage",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage --filter=react-native-nitro-storage",
"benchmark": "turbo run benchmark --filter=react-native-nitro-storage",
"test:cpp": "turbo run test:cpp --filter=react-native-nitro-storage",
"test:cpp:coverage": "turbo run test:cpp:coverage --filter=react-native-nitro-storage",
"example:start": "bun run --cwd apps/example start",
"example:ios": "bun run --cwd apps/example ios",
"example:android": "bun run --cwd apps/example android",
"example:prebuild": "bun run --cwd apps/example prebuild",
"example:prebuild:clean": "bun run --cwd apps/example prebuild:clean"
},
"devDependencies": {
"@swc/core": "^1.15.30",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"eslint-config-expo-magic": "^2.4.0",
"jest": "^30.3.0",
"nitrogen": "0.35.5",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.6",
"react-native-builder-bob": "^0.40.18",
"react-native-nitro-modules": "0.35.5",
"react-test-renderer": "19.2.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"turbo": "^2.9.6",
"typescript": "^5.9.3"
},
"overrides": {
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.6",
"react-native-nitro-modules": "0.35.5",
"@types/react": "~19.2.0"
},
"packageManager": "bun@1.3.11"
}