-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (76 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (76 loc) · 2.01 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "todo-backend",
"version": "1.0.0",
"private": true,
"description": "Backend server for TodoBackend",
"type": "module",
"main": "build/server.js",
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc",
"start": "node build/server.js"
},
"dependencies": {
"@react-email/components": "^0.0.14",
"@react-email/render": "^0.0.7",
"@react-pdf/renderer": "^3.4.2",
"@supabase/supabase-js": "^2.39.7",
"@types/cors": "^2.8.13",
"@types/nodemailer": "^6.4.8",
"@types/react": "^18.2.14",
"axios": "^1.4.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"debug": "~2.6.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^134.0.0",
"helmet": "^8.1.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.20.0",
"mongoose": "^8.19.1",
"morgan": "~1.9.1",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.3",
"object.groupby": "^1.0.3",
"pdfkit": "^0.14.0",
"react": "^18.2.0",
"resend": "^3.2.0",
"stream-to-blob": "^2.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/IsamaDes/TodoBackend"
},
"author": "IsamaDes",
"license": "MIT",
"bugs": {
"url": "https://github.com/IsamaDes/TodoBackend/issues"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.96",
"@types/node": "^20.19.21",
"@types/object.groupby": "^1.0.4",
"@types/pdfkit": "^0.13.4",
"@types/stream-to-blob": "^2.0.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}