-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.78 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "altzone-server",
"version": "1.0.0",
"description": "REST API",
"scripts": {
"build": "nest build --path tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"lint:file": "eslint",
"start": "nest start --path tsconfig.dev.json",
"start:dev": "nest start --watch --path tsconfig.dev.json",
"start:debug": "nest start --debug --watch --path tsconfig.dev.json",
"test": "jest",
"test:ci": "jest --ci --coverage --maxWorkers=3",
"test:ci-retry-failed": "jest --ci --onlyFailures --maxWorkers=3",
"test:watch": "jest --watch",
"test:quiet": "DOTENV_CONFIG_QUIET=true jest",
"sonar:analize": "docker compose -f sonar_docker-compose.yml up -d && sonar-scanner \\\n -Dsonar.projectKey=AltzoneLocal \\\n -Dsonar.sources=. \\\n -Dsonar.host.url=http://localhost:9000 \\\n -Dsonar.login=sqp_d0d523f9a2cf5e1e8f7587e0da315df0adc86568 \\\n && echo \"Remember to stop the sonar server with: \\n docker compose -f sonar_docker-compose.yml down\"\n",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@casl/ability": "6.7.3",
"@nestjs/bullmq": "11.0.4",
"@nestjs/common": "11.1.9",
"@nestjs/core": "11.1.9",
"@nestjs/event-emitter": "3.0.1",
"@nestjs/jwt": "11.0.1",
"@nestjs/mongoose": "11.0.3",
"@nestjs/platform-express": "11.1.9",
"@nestjs/platform-ws": "11.1.9",
"@nestjs/schedule": "6.0.1",
"@nestjs/swagger": "11.2.2",
"@nestjs/websockets": "11.1.9",
"argon2": "0.44.0",
"bull": "4.16.5",
"bullmq": "5.63.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.2",
"cookie-parser": "1.4.7",
"dotenv": "17.2.2",
"express": "5.1.0",
"express-basic-auth": "1.2.1",
"ioredis": "5.8.1",
"jsonwebtoken": "^9.0.2",
"lodash": "4.18.1",
"mongodb": "6.20.0",
"mongoose": "8.19.4",
"mqtt": "5.14.1",
"rxjs": "7.8.2",
"webdav": "5.8.0",
"ws": "8.18.3"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@nestjs/cli": "11.0.10",
"@nestjs/testing": "11.1.9",
"@types/cookie-parser": "1.4.10",
"@types/express": "5.0.5",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.20",
"@types/multer": "2.0.0",
"@types/node": "24.10.1",
"@types/ws": "8.18.1",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.1.0",
"globals": "16.5.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"mongodb-memory-server": "10.3.0",
"nodemon": "3.1.11",
"prettier": "3.6.2",
"reflect-metadata": "0.2.2",
"ts-jest": "29.4.5",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.46.4"
}
}