-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tiny-tunnel",
"version": "1.0.0",
"main": "server.ts",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch --env-file .env src/server.ts",
"kill:port": "kill $(lsof -t -i:5000)",
"build": "tsc"
},
"dependencies": {
"@fastify/auth": "^5.0.4",
"@fastify/circuit-breaker": "^4.0.2",
"@fastify/compress": "^8.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/http-proxy": "^11.4.3",
"@fastify/jwt": "^10.0.0",
"@fastify/leveldb": "^6.1.1",
"@fastify/rate-limit": "^10.3.0",
"@fastify/redis": "^7.2.0",
"@fastify/reply-from": "^12.6.1",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@fastify/under-pressure": "^9.0.3",
"@libsql/client": "^0.17.2",
"@prisma/adapter-better-sqlite3": "^7.6.0",
"@prisma/adapter-libsql": "^7.6.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@scalar/fastify-api-reference": "^1.51.0",
"better-sqlite3": "^12.8.0",
"dotenv": "^17.4.0",
"fastify": "^5.8.4",
"fastify-metrics": "^13.2.0",
"fastify-plugin": "^5.1.0",
"fastify-sqlite": "^1.1.0",
"ioredis": "^5.10.1",
"pg": "^8.20.0",
"pino-multi-stream": "^6.0.0",
"postgres": "^3.4.8",
"sqlite3": "^6.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/ioredis": "^5.0.0",
"@types/node": "^25.5.2",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/pino-multi-stream": "^5.1.6",
"@types/split2": "^4.2.3",
"@types/sqlite3": "^5.1.0",
"pino-pretty": "^13.1.3",
"prisma": "^7.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}