-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.5 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
{
"name": "gap-backend",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"build:image": "npm run prebuild && nest build && docker build -t gap-backend-docker .",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "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": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@aws-crypto/client-node": "4.0.0",
"@elastic/elasticsearch": "7.11.0",
"@nestjs/common": "10.3.8",
"@nestjs/config": "3.2.2",
"@nestjs/core": "10.3.8",
"@nestjs/elasticsearch": "10.0.1",
"@nestjs/platform-express": "10.3.8",
"@nestjs/schedule": "4.0.2",
"@nestjs/typeorm": "10.0.2",
"contentful": "10.8.10",
"contentful-management": "10.46.4",
"dotenv": "16.4.5",
"jsonwebtoken": "9.0.2",
"luxon": "3.4.4",
"notifications-node-client": "^8.0.0",
"pg": "8.11.5",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"typeorm": "0.2.45"
},
"devDependencies": {
"@nestjs/cli": "10.3.2",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.8",
"@types/command-line-args": "5.2.3",
"@types/cron": "2.0.1",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/luxon": "3.4.2",
"@types/node": "20.12.7",
"@types/node-cron": "3.0.11",
"@types/node-rsa": "^1.1.4",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"command-line-args": "5.2.1",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"jest-matcher-specific-error": "1.0.0",
"node-rsa": "^1.1.1",
"prettier": "2.8.8",
"source-map-support": "0.5.21",
"supertest": "6.3.4",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.4.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s",
"!**/*.module.(t|j)s"
],
"coverageDirectory": "../coverage",
"setupFilesAfterEnv": [
"../test/setupUnitTests.js"
],
"testEnvironment": "node"
},
"resolutions": {
"xml2js": "0.5.0",
"follow-redirects": "1.15.6"
},
"packageManager": "yarn@3.6.0"
}