-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.34 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@the-software-compagny/nestjs_module_restools",
"version": "0.0.10",
"description": "Simple tools for NestJS framework and REST APIs",
"repository": "https://github.com/The-Software-Compagny/nestjs_module_restools.git",
"author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
"contributors": [
{
"name": " tacxou",
"email": "12997062+tacxou@users.noreply.github.com",
"url": "https://github.com/tacxou"
},
{
"name": "Contributors",
"url": "https://github.com/The-Software-Compagny/nestjs_module_restools/graphs/contributors"
}
],
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build tsconfig.json",
"postbuild": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --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": {
"class-transformer": "^0.5.1",
"dayjs": "^1.11.11",
"deepmerge": "^4.3.1",
"is-plain-object": "^5.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"@nestjs/mongoose": "^10.0.6",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.9",
"@nestjs/testing": "^10.3.9",
"@types/express": "^4.17.21",
"@types/jest": "29.5.12",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.2",
"class-validator": "^0.14.1",
"cpr": "^3.0.1",
"eslint": "^9.5.0",
"express": "^4.19.2",
"jest": "29.7.0",
"mongoose": "^8.4.3",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"prettier": "^3.3.2",
"reflect-metadata": "^0.2.2",
"request-ip": "^3.3.0",
"rimraf": "^5.0.7",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"publishConfig": {
"access": "public"
}
}