-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 920 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/index.ts"
},
"keywords": [
"koa",
"tutorial"
],
"author": "mRcfps",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/koa": "2.0.49",
"@types/koa__cors": "^3.3.1",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@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": "^12.0.0",
"bcryptjs": "^2.4.3",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.4",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.12"
}
}