-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
67
68
69
70
71
{
"name": "ansel",
"displayName": "Ansel",
"version": "0.3.1",
"description": "An API for interacting with S3/B2 compatible storage methods",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"test": "jest",
"docker:build": "docker build -t 4lch4/ansel:latest .",
"docker:stop": "docker stop ansel && docker rm ansel",
"docker:start": "./start.sh",
"docker:refresh": "pnpm docker:build && pnpm docker:stop && pnpm docker:start"
},
"dependencies": {
"@4lch4/koa-oto": "^1.3.2",
"@4lch4/koa-router-printer": "^1.4.3",
"@4lch4/logger": "^1.7.4",
"@koa/router": "^10.0.0",
"ansi-colors": "^4.1.1",
"aws-sdk": "^2.905.0",
"chalk": "^4.1.2",
"chance": "1.1.7",
"dayjs": "^1.10.7",
"ioredis": "^4.28.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-bunyan-logger": "^2.1.0",
"koa-helmet": "^6.1.0",
"koa-logger": "^3.2.1"
},
"devDependencies": {
"@types/ioredis": "^4.28.1",
"@types/koa": "^2.13.1",
"@types/koa-bunyan-logger": "^2.1.3",
"@types/koa-logger": "^3.1.1",
"@types/koa__router": "^8.0.4",
"@types/node": "^17.0.31",
"axios": "^0.27.2",
"jest": "^28.1.0",
"jest-rest-preset": "^0.0.4",
"prettier": "^2.2.1",
"typescript": "^4.5.2"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "[email protected]:4lch4/Ansel.git"
},
"author": {
"name": "4lch4",
"email": "[email protected]",
"url": "https://alcha.org"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/4lch4/Ansel/issues"
},
"homepage": "https://4lch4.org/projects/ansel",
"keywords": [
"API",
"DigitalOcean-Spaces",
"S3",
"S3-Object-Storage",
"S3-bucket",
"Images",
"Image-Retrieval",
"Image-Retrieval-API"
]
}