-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 822 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "sistema-de-reservas-de-mesas-en-restaurantes",
"version": "1.0.0",
"description": "Backend de implementación de un sistema de reservas de mesas en restaurantes, donde el sistema tendrá que mantener un registro de las mesas con sus coordenadas en cada restaurante y la capacidad de cada una de ellas.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Victor Gonzalez | Alex Gomez",
"license": "ISC",
"proxy":"http://localhost:8080/",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"pg-postgis-types": "^3.0.0",
"sequelize": "^6.6.2"
}
}