-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "clapback-backend",
"version": "0.0.0",
"private": true,
"main": "dist/app.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"predev": "mongod --dbpath data-node &",
"dev:start": "npm-run-all build startVideo start",
"dev": "nodemon --watch src --watch video-processor -e ts,html,css,js --exec npm run dev:start",
"startVideo": "node video-processor/videoProcessor.js &",
"start": "node ."
},
"dependencies": {
"@sentry/node": "~5.15.4",
"@types/amqplib": "~0.5.13",
"@types/axios": "~0.14.0",
"@types/cors": "~2.8.6",
"@types/dotenv": "~8.2.0",
"@types/ejs": "~3.0.1",
"@types/express": "~4.17.2",
"@types/express-jwt": "0.0.42",
"@types/express-session": "~1.15.16",
"@types/ffmpeg-static": "^3.0.0",
"@types/http-errors": "~1.6.3",
"@types/jsonwebtoken": "~8.3.7",
"@types/mongoose": "~5.5.32",
"@types/morgan": "~1.7.37",
"@types/multer": "~1.4.0",
"@types/node": "~12.12.9",
"@types/nodemailer": "~6.4.0",
"@types/passport": "~1.0.2",
"@types/passport-local": "~1.0.33",
"@types/uuid": "~3.4.7",
"amqplib": "~0.6.0",
"axios": "~0.20.0",
"body-parser": "~1.19.0",
"check-disk-space": "~2.1.0",
"cookie-parser": "~1.4.4",
"cors": "~2.8.5",
"debug": "~2.6.9",
"dotenv": "~8.2.0",
"ejs": "~3.0.1",
"express": "~4.16.1",
"express-jwt": "~5.3.1",
"express-jwt-permissions": "~1.3.3",
"express-session": "~1.17.0",
"ffmpeg-static": "~4.0.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jimp": "~0.9.3",
"jsonwebtoken": "~8.5.1",
"moment": "~2.24.0",
"mongodb": "~3.6.0",
"mongoose": "~5.7.11",
"morgan": "~1.9.1",
"multer": "~1.4.2",
"nodemailer": "~6.4.4",
"nodemon": "~1.19.4",
"npm-run-all": "~4.1.5",
"passport": "~0.4.1",
"passport-local": "~1.0.0",
"rimraf": "~3.0.0",
"simple-thumbnail": "^1.6.5",
"tslint": "~5.20.1",
"typescript": "~3.7.2",
"uuid": "~3.4.0"
}
}