-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "arsenal",
"version": "1.3.0",
"private": true,
"license": "GPL-3.0-only",
"type": "module",
"description": "ARS3NAL — personal offline pentest payload toolkit",
"scripts": {
"dev": "concurrently -k -n server,web -c cyan,magenta \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite",
"build": "vite build",
"build:static": "vite build --mode static",
"preview:static": "vite preview --mode static",
"pages": "npm run export-static && npm run build:static",
"start": "tsx server/index.ts",
"seed": "tsx seed/seed.ts",
"export-static": "tsx seed/export-static.ts",
"test": "vitest run"
},
"dependencies": {
"@fastify/static": "^8.0.3",
"better-sqlite3": "^11.7.0",
"fastify": "^5.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"concurrently": "^9.1.0",
"dompurify": "^3.2.3",
"js-yaml": "^5.0.0",
"marked": "^15.0.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}