forked from gpitrella/JUNIOR-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 814 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
{
"name": "nodejs-junior-app",
"version": "2.0.0",
"description": "JUNIOR App",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^6.3.6",
"mongoose-findorcreate": "^3.0.0",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0"
},
"devDependencies": {
"dotenv": "^16.0.1",
"handlebars": "^4.7.7",
"nodemon": "^2.0.16"
}
}