-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 859 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 859 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": "wsnode",
"private": false,
"version": "0.0.1",
"description": "Basic websockets server and nginx",
"scripts": {
"start": "node_modules/.bin/nodemon server.js",
"production": "node server.js",
"development": "node_modules/.bin/nodemon server.js",
"debug": "node_modules/.bin/nodemon --inspect=0.0.0.0 server.js",
"lint": "standard --fix"
},
"dependencies": {
"express": "4.x",
"nodemon": "^2.0.20",
"websocket": "^1.0.31",
"winston": "^3.3.3",
"ws": "^7.5.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-testing-library": "^7.13.3",
"globals": "^16.5.0"
}
}