-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "sst-zero",
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"deploy": "sst deploy",
"dev": "sst dev",
"upgrade": "ncu -u && bun run foreach bunx ncu -u",
"tc": "bun run foreach bun run tc",
"format": "biome check --fix --unsafe ./infra ./*.json ./*.ts ./tsconfig/* && bun run foreach bun run format",
"foreach": "bun run -b scripts/for-each.bun.ts",
"destroy-db": "bun run stop-db && rimraf .sst/storage/postgres",
"start-db": "docker compose up -d",
"start-db-hard": "docker compose up -d --build",
"stop-db": "docker compose down",
"setup": "bun run scripts/replace.bun.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@total-typescript/tsconfig": "1.0.4",
"@types/bun": "1.2.2",
"@types/node": "22.13.1",
"@types/pg": "8.11.11",
"npm-check-updates": "17.1.14",
"pg": "8.13.1",
"rimraf": "6.0.1",
"sst": "3.7.15",
"typescript": "5.7.3"
},
"trustedDependencies": [
"@biomejs/biome",
"@rocicorp/zero-sqlite3",
"esbuild",
"protobufjs"
],
"engines": {
"node": "22.x"
},
"packageManager": "bun@1.2.2"
}