-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-nestjs.json
More file actions
39 lines (39 loc) · 921 Bytes
/
package-nestjs.json
File metadata and controls
39 lines (39 loc) · 921 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "iot-bench-nestjs",
"version": "1.0.0",
"description": "NestJS + Fastify IoT Benchmark Server",
"main": "dist/nestjs-server.js",
"scripts": {
"build": "tsc",
"start": "node dist/nestjs-server.js",
"start:bun": "bun dist/nestjs-server.js",
"dev": "ts-node nestjs-server.ts",
"dev:bun": "bun --hot nestjs-server.ts"
},
"dependencies": {
"@nestjs/common": "^10.2.8",
"@nestjs/core": "^10.2.8",
"@nestjs/platform-fastify": "^10.2.8",
"fastify": "^4.24.3",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@types/uuid": "^9.0.6",
"@types/bun": "^1.0.0",
"typescript": "^5.2.2",
"ts-node": "^10.9.1"
},
"keywords": [
"nestjs",
"fastify",
"benchmark",
"iot",
"performance"
],
"author": "",
"license": "ISC"
}