-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "soft-backend",
"version": "1.0.0",
"description": "Implement a clone of “**Stackoverflow**”. Features to be focused on are:",
"main": "index.js",
"private": true,
"engines": {
"node": "11.8.0",
"npm": "6.8.0"
},
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"heroku": "git push heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ejiro-Edwin/Soft-Backend.git"
},
"author": "Obamrevwo Ejiro Edwin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ejiro-Edwin/Soft-Backend/issues"
},
"homepage": "https://github.com/Ejiro-Edwin/Soft-Backend#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"supertest": "^3.3.0"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"amqplib": "^0.5.3",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.12",
"chai": "^4.2.0",
"compression": "^1.7.3",
"connect-flash": "^0.1.1",
"connect-history-api-fallback": "^1.5.0",
"connect-mongo": "^2.0.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"express": "4.16.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"express-validator": "^5.3.1",
"http-status-codes": "^1.4.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.3.0",
"mocha": "^5.2.0",
"mongoose": "^5.3.14",
"morgan": "~1.9.0",
"node-cron": "^2.0.3",
"nodemailer": "^4.6.4",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"randomstring": "^1.1.5",
"redis": "^2.8.0",
"redis-await": "^1.0.6",
"serve-static": "^1.13.2",
"supertest": "^3.3.0"
}
}