-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 943 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
27
28
29
30
31
{
"name": "mynaposter",
"private": true,
"type": "module",
"packageManager": "bun@1.4.0",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"bun": ">=1.1",
"node": ">=22.6"
},
"scripts": {
"cli": "bun apps/cli/src/main.ts",
"desktop": "cd apps/desktop && bun run start",
"api": "bun apps/api/src/server.ts",
"mcp": "bun packages/mcp/src/server.ts",
"test": "bun test packages/synconfig/test packages/core/test packages/plugin-outreachgraph/test packages/plugin-crawlproof/test packages/plugin-dashboard/test apps/api/test apps/cli/test apps/web/test",
"typecheck": "bun x tsc --noEmit -p tsconfig.json",
"db:up": "docker compose up -d postgres",
"db:migrate": "bun apps/api/src/db/migrate.ts",
"db:down": "docker compose down"
},
"devDependencies": {
"@types/bun": "^1.4.0",
"@types/node": "^22",
"railway": "^3.11.0",
"typescript": "^5.7.2"
}
}