-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "video-server",
"version": "2.0.0",
"main": "dist/index.js",
"repository": "https://github.com/delta-kor/video-server",
"author": "delta-kor <deltakbot1@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "tsc-watch --onSuccess \"node .\"",
"build": "tsc",
"build:video": "ts-node run/build.ts",
"build:radio": "ts-node run/build-radio.ts",
"build:thumbnail": "ts-node run/thumbnail.ts",
"import": "ts-node run/import-json.ts",
"export": "ts-node run/export-tsv.ts",
"deploy": "node .",
"start": "pm2 start dist/index.js --name izflix"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/morgan": "^1.9.4",
"@types/node": "^17.0.6",
"@types/ws": "^8.5.3",
"fluent-ffmpeg": "^2.1.2",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.4.0",
"tsc-watch": "^4.6.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@sentry/integrations": "^7.43.0",
"@sentry/node": "^7.43.0",
"@sentry/profiling-node": "^0.3.0",
"@sentry/tracing": "^7.43.0",
"axios": "^0.24.0",
"chalk": "4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fuse.js": "^6.6.2",
"i18next": "^21.9.1",
"i18next-http-middleware": "^3.2.1",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"p-queue": "6.6.2",
"ws": "^8.6.0"
}
}