-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.33 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
{
"name": "bnext-challenge",
"version": "1.0.0",
"description": "Bnext challenge",
"author": "Acid Tango",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"containers:restart": "docker-compose down && docker volume prune -f && docker-compose up -d db",
"initialize:db": "yarn containers:restart && sleep 4 && yarn migration:run",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"**/*.json\" \"**/*.mjs\"",
"format:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"**/*.json\" \"**/*.mjs\"",
"format:ci": "yarn format:check",
"start": "rimraf dist && nest start",
"start:dev": "rimraf dist && nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"typecheck": "tsc",
"lint:check": "eslint --max-warnings 0 \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint --fix \"{src,apps,libs,test}/**/*.ts\"",
"lint:ci": "yarn lint:check",
"test": "yarn test:unitary && yarn test:e2e:memory && yarn test:integration && yarn test:e2e:db",
"test:ci": "yarn test:coverage",
"test:coverage": "yarn test:unitary --coverage && yarn test:e2e:memory --coverage && yarn test:integration --coverage && yarn test:e2e:db --coverage",
"test:watch": "jest --watch",
"test:unitary": "jest -c test/config/unitary.json",
"test:integration": "jest -c test/config/integration.json",
"test:integration:third-party": "jest -c test/config/integration-third-party.json",
"test:e2e:memory": "jest --config ./test/config/e2e-memory.json",
"test:e2e:db": "jest --config ./test/config/e2e-db.json",
"precommit": "yarn typecheck && yarn format:fix && yarn lint:fix",
"run-checks": "yarn typecheck && yarn format:check && yarn lint:check"
},
"engines": {
"node": "^22.13.0",
"yarn": "~1.22.19"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.583.0",
"@nestjs/axios": "3.0.2",
"@nestjs/common": "10.3.9",
"@nestjs/core": "10.3.9",
"@nestjs/platform-express": "10.3.9",
"@nestjs/swagger": "7.3.1",
"@nestjs/terminus": "10.2.3",
"@swc/core": "1.6.1",
"@swc/jest": "0.2.36",
"axios": "^1.7.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"express": "4.20.0",
"jsonwebtoken": "9.0.2",
"leaked-handles": "5.2.0",
"mongodb": "^6.6.2",
"morgan": "1.10.0",
"nestjs-pino": "4.1.0",
"pino-http": "10.1.0",
"reflect-metadata": "^0.2.2",
"rimraf": "5.0.7",
"rxjs": "7.8.1",
"sqs-consumer": "^10.3.0",
"swagger-ui-express": "5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@nestjs/cli": "10.3.2",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.9",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "9.0.6",
"@types/morgan": "1.9.9",
"@types/node": "^20.12.12",
"@types/pino-http": "5.8.4",
"@types/supertest": "6.0.2",
"@types/uuid": "9.0.8",
"@types/validator": "^13.11.10",
"eslint": "9.x",
"globals": "^15.3.0",
"jest": "29.7.0",
"prettier": "3.3.2",
"supertest": "7.0.0",
"tepper": "1.2.0",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.4.5",
"typescript-eslint": "^7.10.0"
},
"packageManager": "[email protected]"
}