-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "nestjs-cqrs-min",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf build",
"build": "tsc -b",
"rebuild": "npm run clean && npm run build",
"start": "npm run rebuild && node build/index.js",
"watch": "tsc-watch --noClear --onSuccess 'npm run start'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.8.2",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"dependencies": {
"@nestjs/common": "^10.2.6",
"@nestjs/core": "^10.2.6",
"@nestjs/cqrs": "^10.2.6",
"@nestjs/platform-express": "^10.2.6",
"@nestjs/platform-fastify": "^10.2.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
}
}