-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 852 Bytes
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
{
"name": "webserver",
"version": "1.0.0",
"description": "webserver template (koa, websocket, sse, json-rpc)",
"main": "src/index.ts",
"repository": "https://github.com/th-yoo/webserver.git",
"author": "th-yoo <th.yoo@brainboot.kr>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-mount": "^4.0.1",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/koa__cors": "^3.3.0",
"@types/node": "^18.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@koa/cors": "^3.3.0",
"@koalex/koa-json-rpc": "^1.0.3",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-router": "^11.0.1",
"koa-static": "^5.0.0",
"loglevel": "^1.8.0",
"ws": "^8.8.1"
}
}