-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 935 Bytes
/
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
{
"name": "registration-backend",
"version": "1.0.0",
"description": "Backend API server for JWoC 2k22 mentor and mentee registration",
"author": {
"name": "Niloy Sikdar",
"email": "niloysikdar30@gmail.com",
"url": "https://github.com/niloysikdar"
},
"engines": {
"node": ">=14.x"
},
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jwoc-jgec/registration-backend.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/jwoc-jgec/registration-backend/issues"
},
"homepage": "https://github.com/jwoc-jgec/registration-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"mongoose": "^6.1.5",
"nodemailer": "^6.7.2"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}