forked from zeyadwaleed003/Postify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"name": "postify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build && cp -r src/templates dist/templates",
"start": "node ./dist/server.js",
"dev": "nodemon ./src/server.ts",
"prod": "NODE_ENV=production node ./dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/nodemailer": "^7.0.1",
"@types/passport-google-oauth20": "^2.0.16",
"@types/pug": "^2.0.10",
"nodemon": "^3.1.10",
"prisma": "^6.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@prisma/client": "^6.14.0",
"axios": "^1.11.0",
"cloudinary": "^2.7.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"google-auth-library": "^10.3.0",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.5",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pug": "^3.0.3",
"redis": "^5.8.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"winston": "^3.17.0",
"zod": "^4.1.0",
"zod-validation-error": "^4.0.1"
}
}