forked from softhon/mitsi-media
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "mitsi-media",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"fix": "npm run format && npm run lint -- --fix",
"proto:gen": "./proto-gen.sh"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tsconfig/node24": "^24.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"globals": "^16.3.0",
"jest": "^30.0.5",
"jiti": "^2.5.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.1",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.8.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"helmet": "^8.1.0",
"ioredis": "^5.8.2",
"mediasoup": "3.19.4",
"public-ip": "^7.0.1",
"redis": "^5.8.0",
"zod": "^4.0.17"
}
}