-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 828 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 828 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
{
"name": "danielhipskind.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node server.js",
"lint": "eslint",
"deploy": "bash deploy.sh"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"express-validator": "^7.3.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.5.0",
"multer": "^2.1.1",
"nanoid": "^5.1.9",
"next": "^16.2.4",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.5",
"react-dom": "19.2.5",
"socket.io": "^4.8.3",
"winston": "^3.19.0"
},
"devDependencies": {
"eslint": "^10.2.1",
"eslint-config-next": "16.2.4"
}
}