-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "video-upload-watch-stream-platform",
"main": "dist/src/@server.js",
"types": "./dist/src/@server.d.ts",
"version": "0.0.1",
"description": "A NodeJS application to upload, watch and stream live videos.",
"engines": {
"node": "12.12.0"
},
"private": true,
"devDependencies": {
"@types/bull": "^3.12.0",
"@types/bull-board": "^0.6.0",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"supertest": "^4.0.2",
"ts-node": "3.3.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.3.3333"
},
"dependencies": {
"@sentry/node": "^5.11.2",
"@types/app-root-path": "^1.2.4",
"@types/aws-sdk": "^2.7.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/connect-busboy": "0.0.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.7",
"@types/node": "^8.10.59",
"@types/sequelize": "^4.28.8",
"@types/socket.io": "^2.1.4",
"@types/uuid": "^3.4.7",
"@types/winston": "^2.4.4",
"app-root-path": "^3.0.0",
"aws-sdk": "^2.613.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.1",
"bull": "^3.12.1",
"bull-board": "^0.6.0",
"class-validator": "^0.11.0",
"compression": "^1.7.4",
"connect-busboy": "0.0.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.15.4",
"express-async-errors": "^3.1.1",
"fluent-ffmpeg": "^2.1.2",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"node-media-server": "^2.1.4",
"pg": "^7.3.0",
"pg-hstore": "^2.3.3",
"pm2": "^4.2.3",
"reflect-metadata": "^0.1.10",
"sequelize": "^5.21.3",
"sequelize-cli": "^5.5.1",
"socket.io": "^2.4.0",
"ts-node-dev": "^1.0.0-pre.44",
"typeorm": "^0.2.22",
"uuid": "^3.4.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"scripts": {
"build": "tsc",
"start": "set debug=* && ts-node-dev --debug --respawn --transpileOnly --ignore-watch node_modules ./src/@server.ts",
"prod": "node ./build/@server.js",
"test": "mocha --exit -r ts-node/register 'src/@tests/**/*.test.ts'"
}
}