-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 823 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 823 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
{
"name": "companion-updates-api",
"packageManager": "yarn@4.12.0",
"type": "module",
"scripts": {
"dev": "tsx --env-file .env --watch src/main.ts",
"build": "run db:generate && tsc -p tsconfig.json",
"db:generate": "prisma generate",
"db:push": "prisma db push"
},
"dependencies": {
"@bitfocusas/api": "^1.2.2",
"@prisma/adapter-mariadb": "^7.4.1",
"@prisma/client": "^7.4.1",
"@sentry/node": "^10.39.0",
"debug": "^4.4.3",
"mariadb": "^3.5.1",
"octokit": "^5.0.5",
"semver": "^7.7.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/debug": "^4.1.12",
"@types/node": "^24.10.13",
"@types/semver": "^7.7.1",
"prisma": "^7.4.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"zx": "^8.8.5"
}
}