-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "sudo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@discordjs/opus": "^0.3.2",
"cron": "^1.8.2",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"ffmpeg-static": "^4.2.7",
"googleapis": "^59.0.0",
"gtts": "^0.2.1",
"i18n": "^0.12.0",
"mongoose": "^5.10.0",
"node-fetch": "^2.6.1",
"owoify-js": "^1.0.7"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/ffmpeg-static": "^3.0.0",
"@types/i18n": "^0.8.7",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"scripts": {
"docker": "docker-compose build && docker-compose up -d && docker-compose logs -f",
"prestart": "npm run build",
"dbs": "docker run -it --rm -p27017:27017 mongo",
"dev": "ts-node src/index.ts",
"start": "node out/index.js",
"clean": "rm -rf ./out || true",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "cp -R package* locales assets tmp ./out"
},
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"tabWidth": 2
}
}