-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "globehoppinbackend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint --fix --ext .js,.jsx ."
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.6",
"express": "^4.19.2",
"express-validator": "^7.2.0",
"helmet": "^3.21.2",
"json2csv": "^5.0.6",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.8.1",
"mongoose": "^8.6.1",
"nodemailer": "^6.9.15"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"@eslint/js": "^9.16.0",
"babel-jest": "^25.1.0",
"eslint": "^9.16.0",
"globals": "^15.12.0",
"jest": "^25.1.0",
"jsdoc": "^3.6.3",
"nodemon": "^2.0.2"
}
}