-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 905 Bytes
/
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
{
"name": "telegram-youtube-dl",
"version": "1.0.0",
"description": "",
"main": "bot.js",
"scripts": {
"build": "tsc",
"dev": "ts-node -r tsconfig-paths/register ./lib/bot.ts",
"start": "NODE_PATH=dist/ node ./dist/bot.js",
"prod": "npm run build && npm start",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.1",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"form-data": "^2.3.3",
"uuid": "^3.3.2",
"axios": "^0.18.0",
"ytdl-core": "^0.29.1",
"typescript": "^3.3.3333"
},
"devDependencies": {
"@types/form-data": "^2.2.1",
"@types/jest": "^24.0.11",
"@types/nock": "^9.3.1",
"@types/node": "^11.12.2",
"jest": "^24.5.0",
"nock": "^10.0.6",
"ts-jest": "^24.0.0",
"ts-mockito": "^2.3.1",
"ts-node": "^8.0.3",
"tsconfig-paths": "^3.8.0"
}
}