-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 KB
/
package.json
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
{
"name": "nestjs-starter",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "pnpm biome format --write ./src",
"start": "nest start",
"dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "biome check --apply ./src",
"test": "jest",
"test:int": "jest --config jest.config.int.ts",
"test:watch": "jest --watch"
},
"dependencies": {
"@nestjs/common": "^10.2.5",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.5",
"@nestjs/cqrs": "^10.2.7",
"@nestjs/platform-express": "^10.2.5",
"bcrypt": "^5.1.1",
"date-fns": "^2.30.0",
"deep-object-diff": "^1.1.9",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"testcontainers": "^10.2.1",
"uuid": "^9.0.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@nestjs/cli": "^10.1.17",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.5",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/node": "^18.17.15",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}