-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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": "schedule-service",
"version": "0.6.0",
"description": "Service for automatic schedule creation",
"main": "dist/server.js",
"scripts": {
"build": "tsc --project ./",
"start": "node dist/server.js",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node dist/server.js\"",
"postversion": "git push && git push --tags",
"test": "echo \"WARN: no test specified\" && exit 0"
},
"author": "Eyevinn Technology AB ([email protected])",
"repository": {
"type": "git",
"url": "git+https://github.com/HiWay-Media/schedule-service.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.10.3",
"lint": "^0.7.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.4.3"
},
"dependencies": {
"@eyevinn/hls-duration": "^0.1.1",
"@eyevinn/m3u8": "^0.4.1",
"@sinclair/typebox": "^0.20.5",
"aws-sdk": "^2.1004.0",
"dayjs": "^1.10.7",
"debug": "^4.3.2",
"fast-xml-parser": "^3.20.3",
"fastify": "^3.22.0",
"fastify-plugin": "^3.0.0",
"fastify-swagger": "^4.12.4",
"node-fetch": "^2.6.2",
"uuid": "^8.3.2"
}
}