-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "expressjs-websocket-starter",
"version": "1.0.0",
"description": "🚀 Kickstart your real-time web applications with the expressjs-websocket-starter. This boilerplate provides a solid foundation for developers looking to integrate WebSocket communication into their Express.js projects.",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"dev": "nodemon ./src/server.ts"
},
"keywords": [
"nodejs",
"websocket",
"expressjs",
"node-js",
"express-js",
"websocket-kit",
"nodejs-websocket",
"native-websocket",
"express-websocket",
"websocket-starter",
"websocket-starter-repo",
"websocket-template",
"js-websocket"
],
"author": "Clogarr",
"repository": {
"type": "git",
"url": "https://github.com/Clogarr/expressjs-websocket-starter.git"
},
"bugs": {
"url": "https://github.com/Clogarr/expressjs-websocket-starter/issues"
},
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"ws": "^8.15.1"
}
}