-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
40
41
{
"name": "estudai-prisma",
"version": "2.0.0",
"description": "Server for Estudai project",
"license": "MIT",
"author": "Italo Alves",
"main": "src/main/server.ts",
"prisma": {
"schema": "src/adapters/repositories/prisma/database/schema.prisma"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev src/main/server.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.5",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.5",
"prisma": "^4.2.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.8",
"uuid": "^8.3.2",
"validator": "^13.7.0"
}
}