-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "messenger-bot",
"version": "0.0.1",
"description": "A Simple Messenger Bot",
"main": "index.js",
"private": true,
"scripts": {
"start": "node index.js",
"doc": "swagger-jsdoc -d ./swagger.config.js -o ./swagger.json './database/mongodb/models/**/*.js' './controller/**/*.js' && redoc-cli serve ./swagger.json",
"document": "npm run swagger",
"cov": "npm test -- --coverage",
"lint": "eslint './**/*.js'",
"format": "npm run lint -- --fix",
"test": "jest --runInBand",
"dev": "nodemon index.js"
},
"keywords": [
"messenger",
"bot",
"facebook"
],
"author": "Mohammad Hosein Balkhani",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.5.0",
"mongoose": "^5.12.3",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"redis": "^3.1.0",
"sequelize": "^6.6.2"
},
"devDependencies": {
"eslint": "^7.24.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"redoc-cli": "^0.11.4",
"supertest": "^6.1.3",
"swagger-jsdoc": "^6.1.0"
}
}