-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 969 Bytes
/
package.json
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
{
"name": "next-socket-app",
"private": true,
"keywords": [
"socket.io",
"react",
"nextjs",
"express",
"typescript"
],
"author": "JBrave",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/app.js",
"lint": "next lint"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"moment": "^2.29.1",
"nanoid": "^3.1.30",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "4.5.4"
},
"engines": {
"node": ">=12.22.0"
}
}