-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.24 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
85
86
87
88
89
{
"name": "whiteboard-collaboration-service",
"version": "0.10.0",
"description": "Alkemio Whiteboard Collaboration Service for Excalidraw backend",
"author": "Alkemio Foundation",
"private": false,
"license": "EUPL-1.2",
"scripts": {
"build": "nest build",
"format": "biome format --write ./src",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug=0.0.0.0:9228 --watch",
"start:prod": "node dist/main",
"lint": "tsc --noEmit && biome check ./src",
"test": "jest"
},
"dependencies": {
"@elastic/elasticsearch": "8.17.1",
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.6",
"@nestjs/microservices": "^11.1.6",
"@nestjs/platform-express": "^11.1.15",
"@socket.io/redis-adapter": "^8.3.0",
"amqp-connection-manager": "^5.0.0",
"amqplib": "^0.10.9",
"lodash": "^4.17.21",
"nest-winston": "^1.10.2",
"redis": "^5.8.2",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"socket.io": "^4.8.1",
"socket.io-adapter": "^2.5.5",
"yaml": "^2.8.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^11.1.6",
"@types/amqplib": "^0.10.8",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^22.18.6",
"@types/supertest": "^6.0.0",
"husky": "^4.3.8",
"jest": "^30.2.0",
"lint-staged": "^16.3.2",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-jest": "^29.4.4",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10"
},
"volta": {
"node": "22.20.0",
"npm": "10.9.6"
}
}