-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 844 Bytes
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
{
"name": "task-manager",
"version": "1.0.0",
"description": "Projeto de um gerenciador de tarefas utilizando Node.js, Prisma, Express, PostgreSQL e Docker Compose.",
"homepage": "https://github.com/SasaGomess/task-manager-node-api#readme",
"bugs": {
"url": "https://github.com/SasaGomess/task-manager-node-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SasaGomess/task-manager-node-api.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start:dev": "nodemon src/server.js"
},
"dependencies": {
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"express": "^5.2.1"
},
"devDependencies": {
"@types/node": "^25.1.0",
"dotenv": "^17.2.3",
"nodemon": "^3.1.11",
"prisma": "^7.3.0"
}
}