-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 897 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 897 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
{
"name": "random-image-api",
"version": "2.1.0",
"description": "Random Image API with Redis caching, multi-threading, CORS support and intelligent cache management",
"main": "app.js",
"scripts": {
"init": "node init.js",
"start": "npm run init && node app.js",
"dev": "npm run init && NODE_ENV=development node app.js",
"prod": "npm run init && NODE_ENV=production node app.js",
"clean": "rm -f *.json.lock *.json.tmp list.json.backup"
},
"keywords": [
"image-api",
"random",
"redis",
"cache",
"multi-thread",
"cors"
],
"dependencies": {
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"hono": "^4.8.12",
"https": "^1.0.0",
"lru-cache": "^11.1.0",
"mime-types": "^2.1.35",
"path": "^0.12.7",
"redis": "^4.6.0"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Your Name",
"license": "MIT"
}