-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nestjs-backend_blueprint",
"version": "0.0.1",
"description": "",
"author": "serjo96",
"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": "nest start",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:create": "yarn run typeorm migration:create migrations/MIGRATION_NAME",
"migration:generate": "yarn run typeorm migration:generate -d src/ormconfig.ts migrations/MIGRATION_NAME",
"migration:run": "yarn run typeorm migration:run -d ./src/ormconfig.ts"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@nestjs-modules/mailer": "^1.6.1",
"@nestjs/cli": "^10.3.2",
"@nestjs/common": "^8.4.4",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^8.4.4",
"@nestjs/jwt": "^7.1.0",
"@nestjs/platform-express": "7.5.5",
"@nestjs/schedule": "0.4.1",
"@nestjs/swagger": "^5.2.1",
"@nestjs/throttler": "^5.1.2",
"@nestjs/typeorm": "^8.0.3",
"babel-eslint": "^10.1.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"dayjs": "^1.11.10",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"nestjs-pino": "^4.0.0",
"nodemailer": "^6.9.9",
"pg": "^8.3.0",
"pino-http": "^9.0.0",
"pino-pretty": "^10.3.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^7.5.5",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/schematics": "7.2.2",
"@nestjs/testing": "^8.4.4",
"@types/bcryptjs": "^2.4.6",
"@types/express": "4.17.8",
"@types/hapi__joi": "^17.1.8",
"@types/jest": "^27.5.0",
"@types/node": "14.14.10",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "4.9.0",
"jest": "^28.1.0",
"supertest": "^4.0.2",
"ts-jest": "^28.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/$1",
"^@shared(.*)$": "<rootDir>/shared$1",
"^@user(.*)$": "<rootDir>/users$1"
}
}
}