-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 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
{
"name": "btool-orchestrator",
"version": "0.1.0",
"private": true,
"description": "Sentinel orchestrator control plane API",
"main": "dist/server.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/server.ts",
"test": "tsx --test",
"prisma:generate": "prisma generate",
"prisma:validate": "prisma validate",
"start": "node dist/server.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.991.0",
"@aws-sdk/lib-storage": "^3.991.0",
"@prisma/client": "^6.3.1",
"fastify": "^4.28.1",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@types/ssh2": "^1.15.5",
"prisma": "^6.3.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}