forked from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.92 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.92 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
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": "^22.21.0",
"pnpm": "^10.19.0"
},
"packageManager": "pnpm@10.19.0",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"auth:generate": "pnpm -F @acme/auth generate",
"db:migrate": "turbo --ui=tui -F @acme/db migrate",
"db:studio": "turbo -F @acme/db studio",
"dev": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @acme/nextjs...",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add",
"android": "expo run:android",
"ios": "expo run:ios",
"storybook:next": "pnpm -F @acme/nextjs storybook",
"storybook:expo": "pnpm -F @acme/expo storybook",
"x": "pnpm -F @acme/scripts x",
"env:check": "pnpm -F @acme/env envcheck",
"env:watch": "pnpm -F @acme/env envcheck --watch"
},
"devDependencies": {
"@acme/scripts": "workspace:*",
"@biomejs/biome": "^2.2.5",
"@turbo/gen": "^2.5.8",
"chokidar": "^4.0.3",
"turbo": "^2.5.8",
"typescript": "catalog:"
},
"pnpm": {
"comment": "Do NOT change these overrides unless you know what you are doing - it will break nativewind",
"overrides": {
"@expo/config-plugins": "~10.0.2",
"@expo/metro-runtime": "6.1.2",
"lightningcss": "1.30.1",
"metro-runtime": "0.83.1",
"react-dom": "19.1.0",
"react-native-css": "3.0.0",
"react-native-renderer": "19.1.0"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
],
"patchedDependencies": {
"nativewind": "patches/nativewind.patch",
"react-native-web": "patches/react-native-web.patch"
}
}
}