forked from vermaysha/whatsapp-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "whatsapp-gateway",
"version": "2.1.0",
"description": "Simple & Lightweight Whatsapp Gateway",
"main": "dist/server.js",
"exports": "./dist/server.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --no-warn-ignored",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.+(ts|json)\"",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/views/**/** dist/",
"build": "npm run clean && tsc && npm run copy-files",
"dev": "ts-node src/server.ts",
"serve": "node dist/server.js",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vermaysha/whatsapp-gateway.git"
},
"keywords": [
"whatsapp-gateway"
],
"author": {
"name": "Ashary Vermaysha",
"email": "[email protected]",
"url": "https://vermaysha.com"
},
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/vermaysha/whatsapp-gateway/issues"
},
"homepage": "https://github.com/vermaysha/whatsapp-gateway#readme",
"lint-staged": {
"*.ts": "npm run lint",
"*.{ts,json}": "npm run format"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/copyfiles": "^2.4.4",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/node": "^22.10.1",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^8.16.0",
"copyfiles": "2.4.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"rimraf": "6.0.1",
"ts-node": "^10.9.2",
"tslib": "2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "^6.7.9",
"bee-queue": "^1.7.1",
"body-parser": "1.20.3",
"cache-manager": "^5.7.6",
"cache-manager-ioredis-yet": "^2.1.2",
"ejs": "3.1.10",
"express": "4.21.1",
"ioredis": "^5.4.1",
"node-cache": "^5.1.2",
"p-queue": "^8.0.1",
"pino": "9.5.0",
"prettier": "3.4.1",
"qrcode": "1.5.4",
"socket.io": "4.8.1"
},
"engines": {
"node": ">=18.0.0"
}
}