-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
{
"name": "simple-image-host",
"version": "1.0.0",
"description": "A minimalist flat-style image hosting service",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"healthcheck": "node healthcheck.js",
"docker:build": "docker build -t b-pic .",
"docker:run": "docker run -d --name b-pic -p 8007:8007 b-pic",
"docker:stop": "docker stop b-pic && docker rm b-pic"
},
"keywords": [
"image",
"hosting",
"upload",
"minimalist"
],
"author": "xhh1128",
"homepage": "https://github.com/xhhcn/B-pic#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xhhcn/B-pic.git"
},
"bugs": {
"url": "https://github.com/xhhcn/B-pic/issues"
},
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.5.1",
"express-session": "^1.17.3",
"express-validator": "^7.2.1",
"form-data": "^4.0.3",
"helmet": "^8.1.0",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.6",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"validator": "^13.15.15"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}