-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 882 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "zap-owasp-web-interface",
"description": "Web Interface for zaproxy OWASP scanner",
"author": "Rasmus Puls",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.15.1",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "pnpm -r run dev",
"local": "node scripts/local-dev.mjs",
"zap:start": "node scripts/zap-start.mjs",
"zap:stop": "node scripts/zap-stop.mjs",
"build": "pnpm run build:frontend \u0026\u0026 pnpm run build:backend",
"build:frontend": "pnpm --filter frontend run build",
"build:backend": "pnpm --filter backend run build",
"start": "node backend/dist/server.js"
}
}