-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 863 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
{
"name": "koa2-api-server",
"version": "1.0.0",
"description": "A Server of APIs with Koa2.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cxyn/Koa2-API-Server.git"
},
"keywords": [
"koa2"
],
"author": "Colin",
"license": "ISC",
"dependencies": {
"dotenv": "^6.1.0",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-favicon": "^2.0.1",
"koa-jwt": "^3.5.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"mysql": "^2.16.0"
},
"devDependencies": {
"nodemon": "^1.18.10"
},
"bugs": {
"url": "https://github.com/cxyn/Koa2-API-Server/issues"
},
"homepage": "https://github.com/cxyn/Koa2-API-Server#readme"
}