-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 912 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
{
"name": "nextassignment",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--max-old-space-size=4096' node server.js",
"build": "NODE_OPTIONS='--max-old-space-size=8192' next build",
"start": "NODE_ENV=production NODE_OPTIONS='--max-old-space-size=4096' node server.js",
"lint": "next lint"
},
"dependencies": {
"antd": "^5.23.4",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.5",
"next": "15.1.5",
"next-auth": "^5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"eslint": "^9",
"eslint-config-next": "15.1.5"
}
}