-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 896 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 896 Bytes
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
{
"name": "room-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "tsx watch ./src/index.ts",
"gen:openapi": "tsx scripts/generate-openapi-schema.ts",
"typecheck": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint . "
},
"author": "Fishjam Team",
"dependencies": {
"@fastify/cors": "^10.1.0",
"@fastify/env": "^5.0.2",
"@fishjam-cloud/js-server-sdk": "workspace:*",
"axios": "^1.10.0",
"fastify": "^5.2.1",
"fastify-healthcheck": "^5.1.0",
"fluent-json-schema": "^5.0.0"
},
"devDependencies": {
"@fastify/swagger": "^9.4.2",
"@types/node": "^22.13.16",
"pino-pretty": "^13.0.0",
"tsc": "^2.0.4",
"tsx": "^4.19.3",
"typescript": "~5.8.2"
}
}