-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "koa_web_framework",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "nodemon --watch src/**/* -e ts,tsx --exec ts-node -r tsconfig-paths/register ./src/index.ts",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json"
},
"author": "wolfweb",
"license": "Apache-2.0",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "^8.0.11",
"@types/koa-logger": "^3.1.2",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.21",
"nodemon": "^2.0.19",
"ts-node": "^10.8.2",
"tsc-alias": "^1.6.11",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@koa/cors": "^3.3.0",
"@koa/router": "^10.1.1",
"axios": "^0.27.2",
"chalk": "^5.0.1",
"dotenv": "^16.0.1",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-compose": "^4.1.0",
"koa-helmet": "^6.1.0",
"koa-logger": "^3.2.1",
"lodash": "^4.17.21",
"qs": "^6.11.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.8.1"
}
}