-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.08 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": "whatsapp-chatbot-connector",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "cp .env.example .env && jest --coverage",
"dev": "ts-node index.ts",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"start": "node dist/index.js",
"lint": "eslint --ignore-pattern dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.4",
"body-parser": "^1.20.3",
"bullmq": "^5.12.14",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"morgan": "^1.10.0",
"redis": "^4.6.15",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.12",
"@types/supertest": "^6.0.2",
"eslint": "^8.56.0",
"globals": "^15.6.0",
"jest": "^29.7.0",
"superagent": "^9.0.2",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1"
}
}