-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 KB
/
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
36
{
"name": "c216-sistemas_distribuidos",
"version": "1.0.0",
"description": "Exercícios realizados para colocar em prática os conhecimentos adquiridos na disciplina de **C216** (Sistemas Distribuidos) durante a graduação em Engenharia de Computação pelo **[Inatel](https://inatel.br/home/)**.",
"main": "index.js",
"scripts": {
"start:p1": "nodemon ./Pratica1",
"start:p2": "nodemon ./Pratica2",
"start:p3": "nodemon ./Pratica3",
"start:p4": "nodemon ./Pratica4",
"create:db": "sh ./scripts/create-db.sh",
"start:db": "sh ./scripts/start-db.sh",
"delete:db": "sh ./scripts/delete-db.sh",
"migrate:make": "knex migrate:make",
"migrate:exec": "knex migrate:latest",
"migrate:roll": "knex migrate:rollback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brendhon/C216-Sistemas_Distribuidos.git"
},
"author": "Brendhon Moreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brendhon/C216-Sistemas_Distribuidos/issues"
},
"homepage": "https://github.com/Brendhon/C216-Sistemas_Distribuidos#readme",
"dependencies": {
"knex": "^0.95.11",
"pg": "^8.7.1",
"restify": "^8.6.0"
},
"devDependencies": {
"nodemon": "^2.0.14"
}
}