-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1012 Bytes
/
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
{
"name": "tanstack-sst-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules .turbo .sst",
"dev": "turbo run dev",
"format": "biome format --write",
"lint": "turbo run lint",
"test": "turbo run test",
"turbo:generate": "turbo gen workspace",
"typecheck": "turbo run typecheck",
"sst:dev": "sst dev",
"sst:unlock": "sst unlock",
"api": "bun --filter @repo/api dev",
"spa": "bun --filter @repo/spa dev",
"astro": "bun --filter @repo/astro dev",
"ui:add-component": "bunx shadcn-ui@latest add --cwd packages/ui",
"outdated": "turbo run outdated",
"update-deps": "bunx taze --interactive --recursive"
},
"dependencies": {
"sst": "3.0.68"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@happy-dom/global-registrator": "^15.0.0",
"@types/bun": "^1.1.7",
"turbo": "^2.0.14"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"workspaces": ["apps/*", "packages/*", "infra/*"]
}