-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 788 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 788 Bytes
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
{
"name": "express-jwt",
"version": "1.0.0",
"description": "First serious approach in building a backend with mongodb, jwt auth, and express",
"main": "app.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node --experimental-specifier-resolution=node",
"start": "node src/index.js"
},
"keywords": [],
"author": "Sergio Lara",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.2",
"mongoose-to-swagger": "^1.4.0",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.0.0",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"nodemon": "^2.0.18"
},
"type": "module"
}