-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.34 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dinnerwithfriends.api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint:fix": "eslint --fix .",
"test": "jest --watchAll --detectOpenHandles --runInBand",
"start": "set PORT=3998 && node src/index.js",
"dev": "set PORT=3998 && nodemon src/index.js",
"populate": "node src/utilities/populateDB.js",
"drop": "node src/utilities/dropDB.js"
},
"keywords": [
"example",
"heroku"
],
"repository": {
"type": "git",
"url": "https://github.com/workshopapps/dinnerwithfriends.api.git"
},
"author": "Ekene Nwobodo <nwobodoe71@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/workshopapps/dinnerwithfriends.api/issues"
},
"homepage": "https://github.com/workshopapps/dinnerwithfriends.api#readme",
"dependencies": {
"@imranbarbhuiya/mongoose-fuzzy-searching": "^3.0.5",
"@sendgrid/mail": "^7.7.0",
"appoptics-apm": "^10.2.2",
"axios": "^1.1.3",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.0",
"elastic-apm-node": "^3.40.1",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"googleapis": "^109.0.1",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^6.2.8",
"mongoose-fuzzy-searching": "^2.0.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.8.0",
"passport": "0.5",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"swagger-ui-express": "^4.6.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "^6.2.2"
},
"engines": {
"node": "16.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix"
]
}
}