-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "@balmacefa/WA_GPT",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc -p .",
"dev": "env-cmd -e base,dev, ts-node-dev --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts",
"start": "env-cmd -e base,production, node dist/index.js",
"test": "env-cmd -e base,test, jest --coverage",
"lint": "eslint --cache --ext \".js,.ts,.tsx\" --report-unused-disable-directives src",
"test-types": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/qrcode-terminal": "^0.12.2",
"@types/tmp": "^0.2.6",
"env-cmd": "^10.1.0",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
},
"dependencies": {
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"jest": "^29.7.0",
"openai": "^4.48.2",
"qrcode-terminal": "^0.12.0",
"tmp": "^0.2.3",
"whatsapp-web.js": "^1.23.0"
}
}