-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.92 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.92 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
90
91
{
"name": "tldraw-server",
"type": "module",
"version": "1.0.0",
"license": "AGPL-3.0",
"description": "tldraw backend",
"author": "Schulcloud-Verbund",
"private": true,
"engines": {
"npm": ">=9.0.0",
"node": ">=22.0.0"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start server",
"start:server:dev": "nest start server --watch",
"start:server:debug": "nest start server --debug --watch",
"start:server:prod": "node dist/apps/tldraw-server.app.js",
"start:worker:dev": "nest start worker --watch",
"start:worker:debug": "nest start worker --debug --watch",
"start:worker:prod": "node dist/apps/tldraw-worker.app.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --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",
"generate-client:authorization": "node ./scripts/generate-client.js -u 'http://localhost:3030/api/v3/docs-json/' -p 'src/infra/authorization/authorization-api-client' -c 'openapitools-config.json' -f 'operationId:AuthorizationReferenceController_authorizeByReference'"
},
"dependencies": {
"@nestjs/common": "^11.1.14",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.14",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.14",
"@nestjs/swagger": "^11.2.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.4",
"ioredis": "^5.9.3",
"lib0": "^0.2.117",
"minio": "^8.0.6",
"nest-winston": "^1.10.2",
"passport": "^0.7.0",
"passport-headerapikey": "^1.2.2",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.58.0",
"winston": "^3.19.0",
"y-protocols": "^1.0.7",
"yjs": "^13.6.29"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@golevelup/ts-jest": "^1.2.1",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.14",
"@openapitools/openapi-generator-cli": "^2.30.0",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.9.0",
"@types/passport": "^1.0.17",
"@types/passport-strategy": "^0.2.38",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"arg": "^5.0.2",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"fishery": "^2.4.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"redis-memory-server": "^0.16.0",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"ws": "^8.19.0",
"y-websocket": "^3.0.0"
}
}