-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 769 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 769 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
{
"name": "socket-server",
"version": "0.0.1",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "nodemon server.ts",
"start": "npm run build && node ."
},
"author": "@mukeshgurpude",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@socket.io/admin-ui": "^0.5.1",
"@types/lodash": "^4.14.194",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"socket.io": "^4.6.1",
"winston": "^3.8.2",
"yaml": "^2.2.1"
}
}