-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.25 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
43
44
45
46
47
48
49
50
{
"name": "high-security-api",
"version": "1.0.0",
"description": "A high-security API with anti-DDoS and bot protection and a web frontend.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "vercel dev",
"build": "tsc && cd native && npm install && npm run build && cd .. && mkdir -p public && cp index.html public/ && cp -r assets public/ && cp styles.css public/ && cp script.js public/",
"deploy": "vercel deploy"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"node-cache": "^5.1.2",
"body-parser": "^1.20.2",
"pg": "^8.11.1",
"cors": "^2.8.5",
"compression": "^1.7.4",
"express-rate-limit": "^7.1.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.5.9",
"@types/cors": "^2.8.17",
"@types/compression": "^1.7.5",
"@types/pg": "^8.10.9",
"typescript": "^5.3.3",
"vercel": "^32.7.2"
},
"engines": {
"node": "22.x"
},
"files": [
"dist",
"native",
"api",
"rust_services",
"index.html",
"assets",
"public",
"styles.css",
"script.js"
],
"created": "2025-06-13 09:23:44",
"author": "Aasyaco",
"license": "ISC"
}