-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "api-latency-case-study",
"version": "0.1.0",
"private": true,
"description": "Reproducible NestJS + Postgres + Redis reference for cutting a hot-path list endpoint from ~200ms to ~20ms.",
"license": "MIT",
"author": "Hasibul Islam <devhasibulislam@gmail.com>",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main.js",
"seed": "ts-node -r tsconfig-paths/register scripts/seed.ts",
"bench": "node scripts/bench.mjs",
"lint": "eslint \"{src,scripts,test}/**/*.ts\" --fix",
"test": "jest",
"test:e2e": "jest --config test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^10.4.0",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.0",
"@nestjs/platform-express": "^10.4.0",
"@nestjs/typeorm": "^10.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"ioredis": "^5.4.1",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@nestjs/cli": "^10.4.4",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autocannon": "^7.15.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20"
}
}