-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "webrtc-pool-service",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "./node_modules/.bin/ts-node src/index.ts",
"lint": "tslint --fix ./src/**/*.ts ./test/**/*.ts",
"build": "npm run lint && rm -rf dist && tsc --outDir dist && npm run swagger",
"pretest": "tsc -p .",
"test": "npm run lint && nyc mocha -r ts-node/register --timeout 15000 test/**/*.test.ts",
"posttest": "nyc report --reporter=json",
"swagger": "swaggerGen -c ./swagger/swagger.doc.config.json"
},
"dependencies": {
"cors": "^2.8.4",
"log4js": "^3.0.6",
"swagger-ui-express": "^4.0.2",
"typescript-rest": "^1.8.1",
"typescript-rest-swagger": "0.0.22",
"uuid": "^3.3.2",
"wrtc": "^0.3.5"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/swagger-ui-express": "^3.0.0",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-node": "^8.0.1",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2"
}
}