-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 937 Bytes
/
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
{
"name": "pubserver2",
"version": "0.1.2",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"description": "Aozora API server with ES2017 + Koa.js",
"scripts": {
"start": "nf start web",
"test": "ava",
"lint": "eslint *.js"
},
"ava": {
"files": [
"test/*.js"
]
},
"author": "Kenichi Sato <ksato9700@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aozorahack/pubserver2.git"
},
"dependencies": {
"@koa/cors": "3.1.0",
"axios": "0.21.1",
"dotenv": "8.2.0",
"iconv-lite": "0.6.2",
"jszip": "3.5.0",
"koa": "2.13.0",
"koa-body": "4.2.0",
"koa-compress": "5.0.1",
"koa-morgan": "1.0.1",
"koa-router": "10.0.0",
"koa-static-server": "1.5.2",
"mongodb": "3.6.3",
"redis": "3.1.1",
"supertest": "6.0.1"
},
"devDependencies": {
"ava": "3.14.0",
"eslint": "7.16.0"
}
}