send
parents
Showing
.eslintignore
0 → 100644
.eslintrc
0 → 100644
.github/workflows/nodejs.yml
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
app/controller/home.js
0 → 100644
app/io/controller/chat.js
0 → 100644
app/router.js
0 → 100644
config/config.default.js
0 → 100644
config/plugin.js
0 → 100644
jsconfig.json
0 → 100644
package.json
0 → 100644
{ | |||
"name": "socketio_middleware", | |||
"version": "1.0.0", | |||
"description": "", | |||
"private": true, | |||
"egg": { | |||
"declarations": true | |||
}, | |||
"dependencies": { | |||
"egg": "^3", | |||
"egg-scripts": "^2", | |||
"egg-socket.io": "^4.1.6" | |||
}, | |||
"devDependencies": { | |||
"egg-bin": "^5", | |||
"egg-ci": "^2", | |||
"egg-mock": "^5", | |||
"eslint": "^8", | |||
"eslint-config-egg": "^12" | |||
}, | |||
"engines": { | |||
"node": ">=16.0.0" | |||
}, | |||
"scripts": { | |||
"start": "egg-scripts start --daemon --title=egg-server-socketio_middleware", | |||
"stop": "egg-scripts stop --title=egg-server-socketio_middleware", | |||
"dev": "egg-bin dev --sticky", | |||
"debug": "egg-bin debug", | |||
"test": "npm run lint -- --fix && npm run test-local", | |||
"test-local": "egg-bin test", | |||
"cov": "egg-bin cov", | |||
"lint": "eslint .", | |||
"ci": "npm run lint && npm run cov" | |||
}, | |||
"ci": { | |||
"version": "16, 18", | |||
"type": "github" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "" | |||
}, | |||
"author": "wuhao", | |||
"license": "MIT" | |||
} |
Please register or sign in to comment