-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "hey-mentor-api",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && NODE_ENV=test mocha --timeout 10000 --slow 2000 'test/**/index.js' --exit",
"test:watch": "NODE_ENV=test nodemon --exec 'mocha 'test/**/index.js' --exit'",
"db:populate": "node ./scripts/populate_db.js",
"start": "nodemon server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-sort-requires": "^2.1.0",
"minimist": ">=1.2.2",
"mocha": "^5.2.0",
"nodemon": "^2.0.2"
},
"dependencies": {
"assign-deep": "^1.0.1",
"axios": "^0.19.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"eslint-utils": "^1.4.3",
"express": "^4.16.4",
"faker": "^4.1.0",
"lodash": "^4.17.15",
"mixin-deep": "^2.0.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"passport-google-token": "^0.1.2",
"pm2": "^4.2.3",
"sendbird": "^3.0.90",
"set-value": "^3.0.1",
"twilio": "^3.39.4",
"twilio-chat": "^3.3.2",
"uuid": "^3.3.2",
"winston": "^3.1.0"
}
}