-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 772 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 772 Bytes
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
{
"name": "nodejs-api-gateway-elysia",
"version": "1.0.0",
"description": "Lightweight, high-performance API Gateway with Elysia.js and Tailwind CSS for rapid prototyping and production-ready setups",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node server.ts"
},
"keywords": ["nodejs", "typescript", "elysia", "tailwindcss", "api-gateway", "reverse-proxy", "rate-limiting", "dashboard", "web-server", "spa"],
"author": "",
"license": "ISC",
"dependencies": {
"@elysiajs/html": "^1.4.0",
"@elysiajs/node": "^1.4.2",
"elysia": "^1.4.19"
},
"devDependencies": {
"@types/node": "^24.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}