-
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) · 999 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 999 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
32
33
34
35
36
37
38
39
40
41
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "14"
},
"license": "MIT",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"db:up": "docker compose up",
"db:down": "docker compose down",
"studio": "npx prisma studio",
"migrate": "npx prisma migrate dev",
"generate": "npx prisma generate"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^18.15.5",
"@types/nodemailer": "^6.4.7",
"prisma": "4.11.0",
"tsx": "^3.12.6",
"typescript": "^4.5.4"
},
"dependencies": {
"@prisma/client": "4.11.0",
"@sendgrid/mail": "^7.7.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1"
}
}