-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "express-socket.io-middleware",
"version": "0.0.4",
"description": "This middleware allows you to use the existing HTTP REST API as a WebSocket.",
"main": "dist/index.js",
"scripts": {
"start": "pm2-runtime ./src/index.ts --watch",
"pm2:pre-install": "pm2 install typescript",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"pre-commit": "lint-staged",
"build": "rm -rf ./dist && babel src --out-dir dist --extensions \".ts\"",
"publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stegano/express-socket.io.git"
},
"contributors": [
"Yongwoo Jung<stegano@naver.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stegano/express-socket.io/issues"
},
"homepage": "https://github.com/stegano/express-socket.io#readme",
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"typescript": "^4.4.3"
},
"keywords": [
"express",
"socket.io",
"socketio",
"chat",
"websocket"
],
"types": "./src/index.ts",
"dependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"axios": "^0.21.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"socket.io": "^4.2.0",
"ts-node": "^10.2.1"
}
}