-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1018 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1018 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
{
"name": "nest-devtools",
"version": "0.1.6",
"description": "A zero-config developer dashboard for NestJS applications.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest --runInBand",
"example:start": "tsx examples/basic-app/src/main.ts"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"reflect-metadata": "^0.1.12 || ^0.2.0",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/testing": "^11.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"tsx": "^4.15.7",
"typescript": "^5.5.4"
}
}