-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "socketio-example",
"version": "1.0.0",
"description": "SocketIO example using GraphQLServer",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/*.ts src/**/*.ts",
"start": "npm run build && node build/index.js",
"check": "tsc --noEmit --pretty",
"test": "echo 'Not defined in this project'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgohlke/socketio-example.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sgohlke/socketio-example/issues"
},
"homepage": "https://github.com/sgohlke/socketio-example#readme",
"dependencies": {
"@dreamit/graphql-server": "4.12.2",
"express": "4.21.2",
"graphql": "16.10.0",
"socket.io": "4.8.1"
},
"devDependencies": {
"@types/body-parser": "1.19.5",
"@types/express": "4.17.21",
"@types/node": "22.10.5",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-unicorn": "56.0.1",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
}
}