-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "jwt-prisma",
"version": "1.0.0",
"description": "JWT App with Node, Prisma, SQLite and JOI.",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/server.ts"
},
"keywords": [],
"author": "Alexander Davis",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.5.2",
"bcrypt": "^5.1.0",
"chalk": "^5.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.8",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.7",
"nodemailer-express-handlebars": "^6.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.2.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/handlebars": "^4.1.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.13",
"@types/nodemailer-express-handlebars": "^4.0.5",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.6",
"prisma": "^5.5.2",
"prisma-erd-generator": "^1.2.4",
"tsx": "^3.12.1",
"typescript": "^4.9.3"
}
}