-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 KB
/
package.json
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
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=20.10.0",
"pnpm": "^9.12.0"
},
"packageManager": "pnpm@9.12.1",
"scripts": {
"build": "turbo run build",
"build:sst": "pnpm build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:push": "turbo -F @homefront/db push",
"db:studio": "turbo -F @homefront/db studio",
"deploy:development": "sst deploy --stage development",
"deploy:production": "sst deploy --stage production",
"deploy:staging": "sst deploy --stage staging",
"dev": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @homefront/nextjs... --continue",
"dev:sst": "sst dev",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"devDependencies": {
"@homefront/prettier-config": "workspace:*",
"@turbo/gen": "^2.3.4",
"prettier": "catalog:",
"turbo": "^2.3.4",
"typescript": "catalog:"
},
"prettier": "@homefront/prettier-config",
"pnpm": {
"patchedDependencies": {
"@react-native/assets-registry@0.76.2": "patches/@react-native__assets-registry@0.76.2.patch"
}
}
}