-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "nightcode",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start": "bun run apps/server/src/index.ts",
"dev:server": "bun --hot --env-file=.env run apps/server/src/index.ts",
"dev:cli": "bun --watch --env-file=.env run apps/cli/src/index.tsx",
"start:server": "bun --env-file=.env run apps/server/src/index.ts",
"start:cli": "bun --env-file=.env run apps/cli/src/index.tsx",
"db:generate": "cd packages/database && bunx --bun prisma generate",
"db:push": "cd packages/database && bunx --bun prisma db push",
"db:studio": "cd packages/database && bunx --bun prisma studio",
"build": "bun --filter '*' build",
"build:cli": "cd apps/cli && bun run build",
"package:cli": "cd apps/cli && bun run package",
"test": "bun test",
"typecheck": "tsc --build"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
},
"engines": {
"bun": "1.2.16"
},
"trustedDependencies": [
"nightcode-database"
]
}