-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "ta-vivo-whatsapp-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">= 14.18.3",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"scripts": {
"dev": "nodemon src/index.js --exec babel-node --es-module-specifier-resolution=node",
"build": "babel src --out-dir dist --presets minify --no-comments",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.2",
"nodemon": "^2.0.19"
}
}