-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.42 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.42 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
{
"name": "device-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite-node src/index.ts",
"build": "vite build",
"start": "node dist/index.js",
"postinstall": "cd src/protobufs && buf generate && cd ../.. && prisma generate",
"generate:matrx-renderer": "openapi-typescript http://localhost:8080/swagger.json -o src/generated/matrx-renderer.d.ts",
"generate:licensing-api": "openapi-typescript https://licensing.api.koiosdigital.net/swagger.json -o src/generated/licensing-api.d.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@bufbuild/buf": "^1.64.0",
"@bufbuild/protoc-gen-es": "^2.11.0",
"@eslint/js": "^9.39.2",
"@swc/core": "^1.15.11",
"@types/express": "^5.0.6",
"@types/node": "^25.2.0",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.16.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"openapi-typescript": "^7.10.1",
"prettier": "^3.8.1",
"prisma": "^7.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vite": "^7.3.1",
"vite-node": "^5.3.0",
"vite-plugin-node": "^7.0.0"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@nestjs/common": "^11.1.12",
"@nestjs/core": "^11.1.12",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.12",
"@nestjs/swagger": "^11.2.5",
"@nestjs/throttler": "^6.5.0",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "7.3.0",
"@prisma/client-runtime-utils": "^7.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"dotenv": "^17.2.3",
"ioredis": "^5.9.2",
"jose": "^6.1.3",
"openapi-fetch": "^0.15.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"swagger-ui-express": "^5.0.1",
"ws": "^8.19.0"
},
"packageManager": "pnpm@11.0.0-dev.1005+sha512.91f84a392eea348ea4852a182912d2520273a4336f933b78cc44bc931eb999923c097e9433a9b355adc1f725725ea99082fc9f032a559df832632e764c92c798"
}