-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 868 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 868 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
{
"name": "deckpipe",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/shared && npm run build -w packages/mcp-core && npm run build -w packages/api && npm run build -w packages/viewer && npm run build -w packages/mcp",
"build:shared": "npm run build -w packages/shared && npm run build -w packages/mcp-core",
"start": "node packages/api/dist/index.js",
"dev:api": "npm run dev -w packages/api",
"dev:viewer": "npm run dev -w packages/viewer",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:viewer\"",
"db:migrate": "npm run migrate -w packages/api",
"db:reset": "docker compose down -v && docker compose up -d"
},
"devDependencies": {
"concurrently": "^9.1.2",
"typescript": "^5.7.3"
}
}