-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1012 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
31
32
33
34
35
36
37
38
{
"name": "proyecto-final-rollingcode-backend",
"version": "1.0.0",
"description": "Proyecto final backend RollingCode",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"dev": "nodemon ./index.js",
"start": "node ./index.js"
},
"keywords": [
"ProyectoFinal",
"api",
"backend"
],
"author": "Caro Delgado Rosendo Alves Nicolas Gomez Agustin Gomez Urrutia",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.12",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0"
}
}