-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 948 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": "sistema-gestor-tarea",
"version": "1.0.0",
"description": "RESTful API - Sistema de Gestión de Tareas",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daniel-Valente/sistema-gestor-tarea.git"
},
"author": "Daniel-Valente",
"license": "MIT",
"bugs": {
"url": "https://github.com/Daniel-Valente/sistema-gestor-tarea/issues"
},
"homepage": "https://github.com/Daniel-Valente/sistema-gestor-tarea#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mime-types": "^2.1.35",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.3.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}