-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 828 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 828 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
{
"name": "clean-domain-driven",
"version": "1.0.0",
"description": "A practical guide to Domain-Driven Design with Clean Architecture in TypeScript.",
"license": "UNLICENSED",
"packageManager": "pnpm@10.33.0",
"author": "Pierre Martin",
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"test:unit": "vitest tests/unit",
"test:functional": "vitest tests/functional",
"typecheck": "tsc --noEmit",
"start": "tsx src/shared/infrastructure/nestjs/main.ts"
},
"devDependencies": {
"@types/express": "5.0.6",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.1.0"
},
"dependencies": {
"@nestjs/common": "11.1.17",
"@nestjs/core": "11.1.17",
"@nestjs/platform-express": "11.1.17",
"reflect-metadata": "0.2.2",
"uuid": "13.0.0"
}
}