-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "mortstack-chatapp",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo check-types",
"test": "turbo test",
"prepare": "husky",
"api": "NODE_OPTIONS=\"--dns-result-order=ipv4first\" pnpm --filter @repo/api-server dev",
"rn": "turbo start --filter=mobile",
"rn:ios": "turbo ios --filter=mobile",
"rn:android": "turbo android --filter=mobile",
"rn:prebuild": "turbo prebuild --filter=mobile",
"rn:prebuild-clean": "turbo prebuild-clean --filter=mobile",
"rn:rebuild-ios": "turbo rebuild-ios --filter=mobile",
"rn:rebuild-android": "turbo rebuild-android --filter=mobile",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"sst": "^3.19.3",
"turbo": "^2.5.0",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*",
"services/*",
"infra"
],
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "~19.1.10",
"@types/react-dom": "~19.1.10",
"prisma": "6.19.3",
"@prisma/client": "6.19.3",
"@prisma/adapter-neon": "6.19.3"
},
"version": "1.0.0",
"packageManager": "pnpm@10.33.1+sha512.05ba3c1d5d1c18f68df06470d74055e62d41fc110a0c660db1b2dfb2785327f04cf0f68345d4609bc52089e7fa0343c31593b2f9594e2c5d5da426230acc9820",
"dependencies": {
"expo": "~54.0.34",
"react": "19.1.0",
"react-native": "0.81.5"
}
}