-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 KB
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
56
{
"name": "chat_bot",
"version": "1.0.0",
"description": "Chat bot API.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "mocha --exit",
"coverage": "nyc npm run test",
"format": "prettier --write '**/*.js'",
"seed": "node scripts/database/seed.js"
},
"author": "Dhairya Sachdeva",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@hapi/joi-date": "^1.3.0",
"agentkeepalive": "^4.1.3",
"async": "^3.2.0",
"axios": "^0.19.2",
"axios-retry": "^3.1.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"camelcase-keys": "^7.0.2",
"colors": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.5.0",
"express": "^4.17.1",
"express-winston": "^4.0.1",
"form-data": "^4.0.2",
"http-status": "^1.3.2",
"humps": "^2.0.1",
"joi": "^14.3.1",
"moment": "^2.29.1",
"pg": "^8.11.1",
"redis": "^3.0.2",
"set-tz": "^0.2.0",
"uuid": "^7.0.2",
"winston": "^3.2.1",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-security": "^1.4.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"prettier": "^3.4.2"
}
}