-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 KB
/
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
40
41
42
43
44
45
46
47
48
49
{
"name": "witty-koa",
"type": "module",
"version": "0.4.0",
"description": "witty-koa",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"scripts": {
"build": "rm -rf dist && tsc",
"release": "npm run build && npm publish"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/multer": "^3.0.2",
"@koa/router": "^12.0.0",
"@types/ioredis": "^5.0.0",
"@types/koa": "^2.13.5",
"@types/koa__multer": "^2.0.4",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-generic-session": "^2.2.1",
"@types/lodash-es": "^4.17.6",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"ioredis": "^5.3.1",
"koa": "^2.14.1",
"koa-bodyparser": "^4.4.0",
"koa-generic-session": "^2.3.1",
"lodash-es": "^4.17.21",
"mongodb": "^5.0.1",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}