-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.53 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.53 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
34
35
36
37
38
39
40
41
42
{
"name": "redswarm",
"version": "1.0.0",
"description": "AI-Powered Red Team Simulation Engine",
"scripts": {
"setup:all": "npm run setup:backend && npm run setup:frontend",
"setup:backend": "cd backend && python -m venv venv && . venv/bin/activate && pip install -r requirements.txt",
"setup:frontend": "cd frontend && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && . venv/bin/activate && uvicorn main:app --reload --port 8000",
"dev:frontend": "cd frontend && npm run dev -- --port 3000",
"build": "cd frontend && npm run build",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && . venv/bin/activate && pytest",
"test:frontend": "cd frontend && npm run test",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && . venv/bin/activate && flake8 . && black --check .",
"lint:frontend": "cd frontend && npm run lint",
"format": "npm run format:backend && npm run format:frontend",
"format:backend": "cd backend && . venv/bin/activate && black .",
"format:frontend": "cd frontend && npm run format"
},
"keywords": [
"red-team",
"cybersecurity",
"ai",
"swarm-intelligence",
"penetration-testing",
"mitre-attack",
"ctf"
],
"author": "RedSwarm Team",
"license": "AGPL-3.0",
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"python": ">=3.11.0"
}
}