-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 779 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 779 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
{
"name": "practicacodigo-api-backend",
"version": "1.0.0",
"description": "API para ofrecer ejercicios de programación, validar respuestas y gestionar monedas virtuales.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node ./src/server.js",
"dev": "node --watch ./src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"programming",
"API",
"practice",
"backend",
"learning"
],
"author": "EduMMorneolp",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.12.0",
"swagger-ui-express": "^5.0.1"
}
}