-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 753 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 753 Bytes
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
{
"name": "the-startup-stack",
"private": true,
"version": "0.0.0",
"sideEffects": false,
"scripts": {
"dev": "sst dev",
"db:migrate": "bun run --filter @company/core db:migrate",
"db:push": "bun run --filter @company/core db:push",
"db:seed": "bun run --filter @company/core db:seed",
"typecheck": "bun --filter=* typecheck",
"test": "bun --filter=* test",
"format": "biome format --write .",
"format:check": "biome format --error-on-warnings .",
"lint": "biome lint --write ."
},
"workspaces": ["packages/*"],
"dependencies": {
"sst": "^3.17.38"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typescript": "^5.7.2"
},
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}