-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.36 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
{
"name": "plogkit",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.21.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start --dev-client",
"ios": "expo run:ios",
"ios:device": "expo run:ios --device",
"android": "expo run:android",
"prebuild": "expo prebuild --clean",
"typecheck": "tsc --noEmit",
"lint": "expo lint",
"check": "pnpm typecheck && pnpm lint",
"test": "jest --runInBand",
"test:orchestration": "node --test \"scripts/**/*.test.mjs\"",
"verify:specs": "node scripts/spec-verification/verify.mjs",
"test:reliability-soak": "node scripts/reliability-soak/run.mjs quick",
"test:reliability-soak:evidence": "node scripts/reliability-soak/run.mjs evidence",
"test:reliability-soak:replay": "node scripts/reliability-soak/run.mjs replay",
"test:render": "jest --config jest.render.config.js --runInBand",
"measure:render": "node scripts/render-measurement.mjs",
"e2e": "node scripts/e2e/run.mjs all",
"e2e:ios": "node scripts/e2e/run.mjs ios",
"e2e:android": "node scripts/e2e/run.mjs android",
"verify": "pnpm check && pnpm verify:specs && pnpm test:orchestration && pnpm test && pnpm test:render"
},
"dependencies": {
"@shopify/react-native-skia": "2.6.2",
"expo": "57.0.11",
"expo-constants": "57.0.9",
"expo-dev-client": "57.0.10",
"expo-file-system": "57.0.2",
"expo-font": "57.0.1",
"expo-image-picker": "57.0.8",
"expo-linking": "57.0.5",
"expo-localization": "57.0.1",
"expo-media-library": "57.0.3",
"expo-router": "57.0.11",
"expo-splash-screen": "57.0.5",
"expo-status-bar": "57.0.1",
"expo-system-ui": "57.0.2",
"i18next": "^26.3.4",
"react": "19.2.3",
"react-i18next": "^17.0.8",
"react-native": "0.86.2",
"react-native-gesture-handler": "~2.32.0",
"react-native-reanimated": "4.5.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.26.2",
"react-native-worklets": "0.10.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@react-native/jest-preset": "0.86.2",
"@testing-library/react-native": "^14.0.1",
"@types/jest": "29.5.14",
"@types/react": "~19.2.2",
"eslint": "^9.39.4",
"eslint-config-expo": "57.0.1",
"jest": "~29.7.0",
"jest-expo": "57.0.3",
"prettier": "^3.9.4",
"typescript": "~6.0.3"
}
}