-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 972 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 972 Bytes
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": "koa2-file-server",
"version": "1.1.0",
"description": "simple file uploader using koa",
"main": "src/app.js",
"scripts": {
"db:makemigrations": "./node_modules/sequelize-auto-migrations/bin/makemigration.js",
"start": "nodemon src/app.js"
},
"repository": "https://github.com/backToNature/koa-file-uploader",
"keywords": [
"koa",
"middleware",
"upload",
"file"
],
"author": "'darkh' <'backtonature@foxmail.com'>",
"license": "MIT",
"dependencies": {
"@koa/cors": "5.0.0",
"@koa/multer": "^3.0.2",
"dotenv": "^8.2.0",
"form-data": "^2.3.2",
"heic-convert": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.16.1",
"koa-router": "^12.0.1",
"koa-views": "^6.1.4",
"md5-file": "^4.0.0",
"multer": "1.4.5-lts.1",
"mysql2": "^3.11.3",
"sequelize": "6.37.4",
"sequelize-cli": "^5.5.1",
"sharp": "^0.34.2"
},
"devDependencies": {
"nodemon": "^3.1.4"
}
}