-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@mattduffy/exif-inspector",
"version": "1.0.0",
"description": "A web app to view the embedded metadata in photos.",
"author": "Matthew Duffy",
"license": "ISC",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/mattduffy/exif-inspector/blob/main/Readme.md",
"repository": {
"type": "git",
"url": "https://github.com/mattduffy/exif-inspector.git"
},
"bugs": {
"url": "https://github.com/mattduffy/exif-inspector/issues"
},
"exports": {
".": "src/index.js",
"package.json": "./package.json"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bootstrap": "DEBUG_DEPTH=2 DEBUG=* node src/utils/bootstrap.js",
"newUser": "DEBUG_DEPTH=2 DEBUG=* node src/utils/newUser.js",
"dev": "DEBUG_DEPTH=2 DEBUG=* node src/index.js",
"cluster": "DEBUG_DEPTH=2 DEBUG=* node src/cluster.js",
"cluster-exif": "DEBUG_DEPTH=2 DEBUG=* node src/cluster.js"
},
"devDependencies": {
"eslint": "8.38.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0"
},
"dependencies": {
"@koa/ejs": "5.0.0",
"@koa/router": "12.0.1",
"@mattduffy/albums": "file:./../albums",
"@mattduffy/exiftool": "file:./../exiftool",
"@mattduffy/koa-migrations": "file:./../koa-migrations",
"@mattduffy/users": "file:./../users",
"@mattduffy/webfinger": "file:./../webfinger",
"@maxmind/geoip2-node": "5.0.0",
"commander": "11.0.0",
"debug": "4.3.4",
"dotenv": "16.3.1",
"formidable": "3.5.1",
"ioredis": "5.3.2",
"jose": "4.14.4",
"keygrip": "1.1.0",
"koa": "^2.14.1",
"koa-redis": "4.0.1",
"koa-router": "12.0.0",
"koa-session": "6.3.1",
"koa-static": "5.0.0",
"mongodb": "6.5.0",
"redis": "4.6.8",
"redis-om": "0.4.0-beta.4",
"ulid": "2.3.0"
},
"keywords": [
"Koa",
"EXIF",
"IPTC",
"metadata"
]
}