-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.13 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
37
{
"name": "sd-019-b-live-lectures",
"version": "1.0.0",
"description": "Este repositório armazena os códigos e scripts fornecidos durante as aulas ao vivo pelos especialistas da Trybe.",
"main": "index.js",
"dependencies": {
"dotenv": "^16.0.2",
"express": "^4.18.1",
"mysql2": "^2.3.3",
"sequelize": "^6.21.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.15",
"@types/sequelize": "^4.28.14",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsnd src/index.ts",
"build": "npx -y tsc",
"prestart": "npm run build && npm run db:reset",
"db:reset": "npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryber/sd-019-b-live-lectures.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tryber/sd-019-b-live-lectures/issues"
},
"homepage": "https://github.com/tryber/sd-019-b-live-lectures#readme"
}