-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 991 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
{
"name": "buscafe-backend",
"version": "1.0.0",
"description": "backend for plataform buscafe",
"main": "index.js",
"repository": "https://github.com/Igorcbraz/Buscafe.git",
"author": "Buscafe Team",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/server.ts"
},
"dependencies": {
"@prisma/client": "^3.12.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/md5": "^2.3.2",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.18",
"axios": "^0.26.0",
"cpf-cnpj-validator": "^1.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"mongoose": "^6.3.1",
"prisma": "^3.12.0",
"socket.io": "^4.4.1",
"stripe": "^9.6.0",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}