-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1011 Bytes
/
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": "desafio-treinow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/server.ts",
"migrate": "npx prisma migrate dev",
"studio": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ViniciusMaiaM/desafio-treinow.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ViniciusMaiaM/desafio-treinow/issues"
},
"homepage": "https://github.com/ViniciusMaiaM/desafio-treinow#readme",
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.4.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"prisma": "^4.10.1",
"prisma-erd-generator": "^1.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0"
}
}