-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.15 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
{
"name": "@privateaim/server-realtime-kit",
"version": "0.8.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Peter Placzek",
"email": "[email protected]",
"url": "https://tada5hi.net"
},
"license": "Apache-2.0",
"description": "This package contains the realtime application which connects the API with socket based clients.",
"dependencies": {
"@authup/kit": "^1.0.0-beta.23",
"@authup/core-kit": "^1.0.0-beta.23",
"@authup/core-realtime-kit": "^1.0.0-beta.23",
"@authup/server-adapter-kit": "^1.0.0-beta.20",
"@authup/server-adapter-socket-io": "^1.0.0-beta.20",
"@privateaim/kit": "^0.8.4",
"@privateaim/server-kit": "^0.8.4",
"@ebec/http": "^2.3.0"
},
"devDependencies": {
"redis-extension": "^2.0.1",
"socket.io": "^4.8.1"
},
"peerDependencies": {
"redis-extension": "^2.0.1",
"socket.io": "^4.8.1"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"start": "node dist/index.js"
}
}