-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "zap-rest-api",
"version": "3.0.0",
"description": "Sistema para controle do whatsapp!",
"author": {
"name": "João Victor Souza",
"email": "[email protected]",
"url": "https://joaovictorsouza.dev"
},
"engines": {
"node": "14.9"
},
"keywords": [
"whatsapp",
"machine learning",
"ai",
"bot",
"api"
],
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"pm2": "pm2 start index.js --name 'api-premium'",
"dev": "set PORT=3500&& set NODE_ENV=development&& nodemon index.js"
},
"nodemonConfig": {
"ignore": [
"tokens/*",
"upload/*"
]
},
"license": "ISC",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@wppconnect-team/wppconnect": "^1.9.1",
"axios": "^0.22.0",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"crypto-js": "^4.1.1",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"imagemin": "^8.0.1",
"imagemin-jpeg-recompress": "^7.0.0",
"mime": "^2.5.2",
"multer": "^1.4.3",
"mustache-express": "^1.3.2",
"socket.io": "^4.2.0"
},
"devDependencies": {
"nodemon": "^2.0.13"
}
}