-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 835 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
{
"name": "website-backend",
"version": "1.0.0",
"description": "It is the backend of the Techathlon IPEC 2021 registration website.",
"main": "server.js",
"repository": "[email protected]:techathlonIpec/website-backend.git",
"author": "anshika gupta <[email protected]>",
"scripts": {
"start:dev": "nodemon server.js",
"start": "node server.js"
},
"license": "EULA",
"private": true,
"dependencies": {
"@sentry/node": "^6.5.1",
"@sentry/tracing": "^6.5.1",
"bcrypt": "^5.0.1",
"chalk": "^4.1.1",
"cors": "^2.8.5",
"ddos": "^0.2.1",
"dotenv": "^10.0.0",
"export-from-json": "^1.3.9",
"express": "^4.17.1",
"joi": "^17.4.0",
"mongoose": "^5.12.11",
"nanoid": "^3.1.23",
"nodemailer": "^6.6.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}