-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "i4g-opensource-backend-project-2022",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon src/index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORIYOMI289/I4G-OPENSOURCE-BACKEND-PROJECT-2022.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ORIYOMI289/I4G-OPENSOURCE-BACKEND-PROJECT-2022/issues"
},
"homepage": "https://github.com/ORIYOMI289/I4G-OPENSOURCE-BACKEND-PROJECT-2022#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.32.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"joi": "^17.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"socket.io": "^4.5.3",
"winston": "^3.8.2"
},
"devDependencies": {
"ejs": "^3.1.8",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
}
}