-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.26 KB
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
{
"name": "api-security-scanner",
"version": "1.0.1",
"description": "Automated API security testing tool with FastAPI backend and ReactTS frontend",
"private": true,
"scripts": {
"dev": "docker compose -f docker-compose.dev.yml up",
"dev:build": "docker compose -f docker-compose.dev.yml up --build",
"dev:down": "docker compose -f docker-compose.dev.yml down",
"dev:logs": "docker compose -f docker-compose.dev.yml logs -f",
"prod": "docker compose -f docker-compose.prod.yml up -d",
"prod:build": "docker compose -f docker-compose.prod.yml up --build -d",
"prod:down": "docker compose -f docker-compose.prod.yml down",
"prod:logs": "docker compose -f docker-compose.prod.yml logs -f",
"clean": "docker compose -f docker-compose.dev.yml down -v && docker compose -f docker-compose.prod.yml down -v",
"clean:all": "npm run clean && docker system prune -af --volumes"
},
"repository": {
"type": "git",
"url": "https://github.com/CarterPerez-dev/Cybersecurity-Projects/PROJECTS/intermediate/api-security-scanner"
},
"keywords": [
"security",
"api-testing",
"vulnerability-scanner",
"pentesting",
"fastapi",
"react",
"docker"
],
"author": "https://github.com/CarterPerez-dev",
"license": "MIT"
}