-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "whatsapp-service",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "rm -rf .wwebjs_auth && node dist/server",
"dev": "nodemon -r dotenv/config server.ts",
"build": "rm -rf dist && tsc",
"typecheck": "tsc --noEmit --incremental false"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"qrcode": "^1.5.1",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.19.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/qrcode-terminal": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}