-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@appgeist/storage",
"version": "1.5.4",
"description": "An opinionated Express-based storage server featuring assets uploading and on-demand image-resizing, like a self-hosted Cloudinary",
"keywords": [
"storage",
"images",
"server",
"middleware",
"imagemagick",
"image-resize",
"webp"
],
"main": "index.js",
"repository": "https://github.com/appgeist/storage",
"bugs": {
"url": "https://github.com/appgeist/storage/issues"
},
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"license": "ISC",
"devDependencies": {
"@appgeist/eslint-config-base": "^1.3.1",
"@types/express": "^4.17.6",
"@types/uuid": "^7.0.3"
},
"dependencies": {
"@appgeist/ensure-dir": "^1.1.4",
"@appgeist/exec": "^1.1.3",
"@appgeist/file-exists": "^1.1.3",
"@appgeist/get-file-from-url": "^1.1.3",
"express": "^4.17.1",
"multer": "^1.4.2",
"uuid": "^7.0.3"
}
}