-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1020 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
{
"name": "uspolis-mobile-backend",
"version": "1.0.0",
"description": "Backend do aplicativo USPolis",
"main": "index.js",
"scripts": {
"start": "node ./dist/server.js",
"start:dev": "nodemon",
"build": "tsc --incremental",
"clean": "rm -rf ./build && rm tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCS-Poli-USP/USPolis-Mobile-Backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PCS-Poli-USP/USPolis-Mobile-Backend/issues"
},
"homepage": "https://github.com/PCS-Poli-USP/USPolis-Mobile-Backend#readme",
"dependencies": {
"@prisma/client": "^4.8.1",
"@sendgrid/mail": "^7.7.0",
"express": "^4.18.2",
"prisma": "^4.8.1",
"redis": "^4.6.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.1",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.9.4"
}
}