forked from egorky/whatsapp-web-chatwoot1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "chatwoot-whatsapp-web",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon --watch src --ext ts,tsx --exec ts-node src/server.tsx",
"start": "tsc && pm2 start dist/server.js --no-daemon",
"stop": "pm2 stop all",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write src/ --loglevel warn",
"lint": "npx eslint . --ext .ts --fix",
"prepare": "husky install"
},
"author": "masterkitano <[email protected]> (https://ignus.mx)",
"contributors": [
"Carlos Rivera <[email protected]> (https://github.com/carlosrivera)"
],
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"humps": "^2.0.1",
"ink": "^3.2.0",
"is-docker": "^3.0.0",
"pm2": "^5.2.2",
"qrcode": "^1.5.1",
"react": "^17.0.2",
"whatsapp-web.js": "^1.19.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/humps": "^2.0.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.7.15",
"@types/node-fetch": "^2.6.2",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.20",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"husky": "^8.0.1",
"mime-types": "^2.1.35",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}