This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 333
/
package.json
59 lines (59 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "baileys-api",
"description": "Simple RESTful WhatsApp API",
"version": "1.0.0-beta.0",
"private": true,
"main": "dist/index.js",
"repository": "github:ookamiiixd/baileys-api",
"author": "Royhan (https://github.com/ookamiiixd)",
"bugs": {
"url": "https://github.com/ookamiiixd/baileys-api/issues"
},
"homepage": "https://github.com/ookamiiixd/baileys-api#readme",
"license": "MIT",
"scripts": {
"start": "node .",
"build": "tsc",
"lint": "eslint .",
"format": "prettier . --write"
},
"dependencies": {
"@adiwajshing/baileys": "^5.0.0",
"@hapi/boom": "^10.0.0",
"@ookamiiixd/baileys-store": "^1.0.0-beta.0",
"@prisma/client": "^4.7.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"link-preview-js": "^3.0.0",
"pino": "^8.7.0",
"qrcode": "^1.5.1",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.30.5"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/node": "^18.11.10",
"@types/qrcode": "^1.5.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.8.0",
"prettier-plugin-organize-imports": "^3.2.1",
"prisma": "^4.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14.5.0"
},
"files": [
"dist/",
"prisma/schema.prisma",
".env.example"
]
}