-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "whatsapp_bot",
"version": "0.0.1",
"description": "wants those youtube songs",
"main": "index.js",
"author": "Talha Balaj",
"license": "MIT",
"private": true,
"dependencies": {
"acrcloud": "^1.4.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"memorystream": "^0.3.1",
"mime-types": "^2.1.27",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"ts-node": "^8.10.2",
"twilio": "^3.47.0",
"typescript": "^3.9.5",
"ytdl-core": "^2.1.7",
"ytsr": "^0.1.15"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/memorystream": "^0.3.0",
"@types/mime-types": "^2.1.0",
"@types/morgan": "^1.9.1",
"@types/node-fetch": "^2.5.7",
"@types/twilio": "^2.11.0",
"ts-node-dev": "^1.0.0-pre.49"
},
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node-dev ./src/index.ts",
"build": "tsc --build tsconfig.json"
}
}