-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "@vistaremote/server",
"version": "0.1.0",
"private": true,
"description": "VistaRemote signaling and API (NestJS)",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:mvp": "node dist/main.js",
"start:prod": "node dist/main.js",
"test": "rstest",
"test:watch": "rstest -w",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"migration:run": "typeorm migration:run -d dist/database/data-source.js",
"test:perf": "k6 run perf/k6/smoke.js",
"test:perf:load": "k6 run perf/k6/load.js",
"prepare": "node ../tooling/scripts/setup-husky.mjs"
},
"dependencies": {
"@luminaryworks/auth-core": "^0.2.0",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/platform-ws": "^10.4.15",
"@nestjs/websockets": "^10.4.15",
"@nestjs/typeorm": "^10.0.2",
"@vistaremote/shared": "file:../shared",
"ioredis": "^5.4.2",
"pg": "^8.13.0",
"ws": "^8.18.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"husky": "^9.1.7",
"@nestjs/cli": "^10.4.9",
"@nestjs/testing": "^10.4.15",
"@rstest/core": "^0.10.2",
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@9.15.0"
}