-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "r-bot",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/rizqyn9/r-bot.git",
"scripts": {
"setup": "docker-compose up -d",
"clean": "rm -rf ./dist",
"clean:session": "rm -rf ./sessions *session.json",
"build": "tsc -p .",
"production": "node dist",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' index.ts",
"test": "nodemon --watch './**/*.ts' --exec 'ts-node' ./src/test/index.ts",
"start": "node -r tsconfig-paths/register ./dist"
},
"author": "rizqyn9 <[email protected]>",
"license": "MIT",
"dependencies": {
"@adiwajshing/baileys": "^4.0.0",
"@adiwajshing/keyed-db": "^0.2.4",
"@hapi/boom": "^9.1.4",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"envalid": "^7.2.2",
"figlet": "^1.5.2",
"fs-extra": "^10.0.0",
"global": "^4.4.0",
"ioredis": "^4.28.0",
"mongoose": "^6.0.11",
"nodemon": "^2.0.15",
"pino": "^7.6.4",
"qrcode-terminal": "^0.12.0",
"redis": "^4.0.3",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/ioredis": "^4.27.8",
"object-sizeof": "^1.6.2",
"prettier": "^2.5.1",
"ts-node": "^10.3.0"
}
}