-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1000 Bytes
/
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
{
"name": "kurento-monitoring-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "env-cmd -f ./config/dev.env nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/server.ts",
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"dc:up": "docker-compose --env-file ./config/dev.env up --build -d "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"env-cmd": "^10.1.0",
"express": "^4.17.2",
"kurento-client": "^6.15.0",
"lodash": "^4.17.21",
"node-object-hash": "^2.3.10",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.178",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.7.4"
}
}