-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 797 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 797 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
{
"name": "nextjs-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ts-node --project tsconfig.server.json src/server.ts",
"build": "next build",
"start": "NODE_ENV=production ts-node --project tsconfig.server.json src/server.ts",
"lint": "next lint"
},
"dependencies": {
"@types/express": "^5.0.0",
"express": "^4.21.1",
"next": "^15.0.2",
"react": "^19.0.0-rc-02c0e824-20241028",
"react-dom": "^19.0.0-rc-02c0e824-20241028",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}