-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 930 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 930 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
{
"name": "ejercicio_api_rest_entries_authors",
"version": "1.0.0",
"description": "Ejercicio para poner en practica consultas a base de datos relacional con API REST",
"main": "app.js",
"scripts": {
"test": "jest",
"start": "nodemon app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JavierEspinosaP/Ejercicio_API_REST_entries_authors.git"
},
"author": "Javier Espinosa",
"license": "ISC",
"bugs": {
"url": "https://github.com/JavierEspinosaP/Ejercicio_API_REST_entries_authors/issues"
},
"homepage": "https://github.com/JavierEspinosaP/Ejercicio_API_REST_entries_authors#readme",
"devDependencies": {
"jest": "^29.7.0",
"jest-stare": "^2.5.1",
"nodemon": "^3.1.14",
"supertest": "^6.3.3"
},
"dependencies": {
"dotenv": "^17.2.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"pg": "^8.16.3"
}
}