-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 KB
/
package.json
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": "edumeet-room-server",
"version": "1.3.0",
"description": "Edumeet room server",
"main": "dist/server.js",
"author": "Håvar Aambø Fosstveit <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc --build src",
"start": "tsc --build src && node dist/server.js",
"prodstart": "node dist/server.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"connect": "node connect.js",
"test:unit": "jest __tests__/unit-tests",
"test:integration": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest __tests__/integration-tests",
"test:coverage": "jest __tests__/unit-tests --coverage --coverageDirectory coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@tsconfig/node20": "^1.0.2",
"@types/debug": "^4.1.12",
"@types/geoip-lite": "^1.4.4",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^18.19.50",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"moment": "^2.29.4",
"@feathersjs/authentication-client": "^5.0.30",
"@feathersjs/feathers": "^5.0.30",
"@feathersjs/socketio-client": "^5.0.30",
"@observertc/observer-js": "^0.40.32",
"debug": "^4.3.7",
"edumeet-common": "github:edumeet/edumeet-common#0.6.1",
"geoip-lite": "^1.4.10",
"h264-profile-level-id": "^1.1.1",
"jsonwebtoken": "^9.0.2",
"mediasoup": "^3.14.14",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}