generated from Code-the-Dream-School/react-node-practicum-back-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 905 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
{
"name": "bb-practicum-team-1-back",
"version": "1.0.0",
"description": "Back-End Repo for Team 1 of Baboon/Bald Eagle Practicum",
"main": "src/app.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf-csrf": "^3.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"express-favicon": "^2.0.4",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.2",
"morgan": "^1.10.0",
"node": "^22.11.0",
"nodemailer": "^6.9.16",
"punycode": "^2.3.1"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}