-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1017 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
{
"name": "koa-api-exercise",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json --format stylish",
"build": "tsc",
"serve": "ts-node src/server.ts",
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/http-status-codes": "^1.2.0",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-router": "^7.4.4",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.23",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.1.1",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.10"
},
"dependencies": {
"http-status-codes": "^2.2.0",
"multer": "^1.4.4",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"typedi": "^0.10.0"
}
}