-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1022 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1022 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
{
"name": "appsec-workbench",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.5.2",
"description": "Application security operations platform for ingesting, normalizing, triaging, and reporting Semgrep, Gitleaks, and Trivy findings mapped to OWASP ASVS 5.0.0.",
"scripts": {
"dev:api": "npm --prefix apps/api run dev",
"dev:web": "npm --prefix apps/web run dev",
"build:api": "npm --prefix apps/api run build",
"build:web": "npm --prefix apps/web run build",
"deploy:netlify:web": "npm --prefix apps/web run deploy:netlify",
"deploy:netlify:web:prod": "npm --prefix apps/web run deploy:netlify:prod",
"db:setup:api": "npm --prefix apps/api run db:setup",
"db:format": "prisma format --schema prisma/schema.prisma",
"db:validate": "prisma validate --schema prisma/schema.prisma",
"db:generate": "prisma generate --schema prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^6.6.0"
},
"devDependencies": {
"prisma": "^6.6.0"
}
}