-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.27 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "financial-advisor",
"version": "1.16.7",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\" --no-error-on-unmatched-pattern",
"start": "nest start",
"start:dev": "nest start --watch | pino-pretty",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint-check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:cov": "jest --coverage --runInBand",
"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 --runInBand",
"test:all": "jest --runInBand"
},
"dependencies": {
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.4.2",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.4",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "*",
"@nestjs/mongoose": "^10.0.10",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.3",
"@nestjs/schedule": "^4.1.1",
"@nestjs/swagger": "^7.4.0",
"axios": "^1.7.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cron": "^3.1.7",
"date-fns": "^4.1.0",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"migrate-mongo": "^11.0.0",
"money": "^0.2.0",
"mongoose": "^8.7.0",
"nestjs-pino": "^4.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.0",
"pino-http": "^10.3.0",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.3",
"@types/cron": "^2.4.0",
"@types/express": "^4.17.21",
"@types/jest": "29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.5",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "29.7.0",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"source-map-support": "^0.5.20",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
".*\\.module\\.ts$",
"main.ts"
],
"testEnvironment": "node",
"testTimeout": 20000
},
"main": "main.ts",
"repository": "https://github.com/hectorgomezv/financial-advisor-nestjs.git",
"packageManager": "[email protected]"
}