-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
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
{
"name": "api",
"version": "1.0.0",
"description": "- [O que deverá ser desenvolvido](API com finalidade de estudo e desenvolvimento pratico)\r - [ANTES DE COMEÇAR A DESENVOLVER](#antes-de-começar-a-desenvolver)\r - [Guia de tarefas](#guia-de-tarefas)\r - [Lista de Requisitos](#lista-de-requisitos)\r - [1 - Sua aplicação deve ter o endpoint POST `/user`](#1---sua-aplicação-deve-ter-o-endpoint-post-user)",
"main": "src/server.js",
"scripts": {
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "nodemon -L ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/layokaminski/api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/layokaminski/api/issues"
},
"homepage": "https://github.com/layokaminski/api#readme",
"devDependencies": {
"nodemon": "^2.0.20",
"sequelize-cli": "6.2"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "4.17",
"mysql2": "2.3",
"sequelize": "6.3"
}
}