-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 976 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
32
33
34
35
36
{
"name": "@zeppelinbot/zeppelin",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"build": "pnpm -r run build",
"build:backend": "pnpm --filter '@zeppelinbot/backend...' run build",
"build:dashboard": "pnpm --filter '@zeppelinbot/dashboard...' run build",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"run:migrate": "cd backend && pnpm run migrate",
"run:bot": "cd backend && pnpm run start-bot-prod",
"run:api": "cd backend && pnpm run start-api-prod",
"run:dashboard": "cd dashboard && node serve.js"
},
"devDependencies": {
"@types/node": "^24.13.3",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"typescript": "catalog:ts7"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.19.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "download"
}
}
}