forked from soybeanjs/soybean-admin-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "soybean-admin-nestjs",
"version": "0.0.1",
"private": true,
"description": "The backend server of Soybean Admin, written by NestJS.",
"author": {
"name": "Soybean",
"email": "[email protected]",
"url": "https://github.com/honghuangdc"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint . --fix",
"test": "jest --config test/jest.config.js",
"test:watch": "jest --config test/jest.config.js --watch",
"test:cov": "jest --config test/jest.config.js --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/platform-express": "^9.0.11",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@nestjs/cli": "^9.1.2",
"@nestjs/schematics": "^9.0.3",
"@nestjs/testing": "^9.0.11",
"@types/express": "^4.17.13",
"@types/jest": "29.0.0",
"@types/node": "^18.7.16",
"@types/supertest": "^2.0.12",
"eslint": "^8.23.0",
"eslint-config-soybeanjs": "^0.0.10",
"jest": "29.0.2",
"source-map-support": "^0.5.21",
"supertest": "^6.2.4",
"ts-jest": "28.0.8",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "^4.8.2"
}
}