forked from tuture-dev/koa-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 914 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
{
"name": "koa-quickstart",
"version": "1.0.0",
"private": true,
"description": "Hands-on tutorial for Koa 2",
"main": "index.js",
"scripts": {
"start": "nodemon --watch src -e ts,tsx --exec ts-node src/server.ts"
},
"keywords": [
"koa",
"tutorial"
],
"author": "mRcfps",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "2.0.49",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa__cors": "^3.0.1",
"@types/koa__router": "^8.0.2",
"@types/node": "^12.12.6",
"nodemon": "^2.0.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@koa/router": "^8.0.8",
"argon2": "^0.26.2",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25"
}
}