-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1008 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
38
39
{
"name": "busca-dos-codelabs-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"postinstall": "tsc && npx prisma migrate deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/USPCodeLabSanca/busca-dos-codelabs-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/USPCodeLabSanca/busca-dos-codelabs-backend/issues"
},
"homepage": "https://github.com/USPCodeLabSanca/busca-dos-codelabs-backend#readme",
"dependencies": {
"@prisma/client": "^5.13.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"nodemon": "^3.1.0",
"prisma": "^5.13.0",
"typescript": "^5.4.5"
},
"engines": {
"node": "18"
}
}