-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 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
49
50
51
52
53
54
55
{
"name": "otto",
"version": "1.3.1",
"description": "The simple and efficient file server",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node start.js",
"dev": "nodemon start.js",
"test": "jest",
"test:otto": "node test-otto.js",
"test:quick": "node test-otto.js quick",
"test:chunked": "node test-chunked-upload.js",
"test:routes": "node test-routes.js",
"seed": "node src/scripts/seed.js",
"lint": "eslint . --ext .js"
},
"keywords": [
"file-upload",
"media-server",
"express",
"vi-software"
],
"author": "VI Software",
"license": "AGPL-3.0",
"dependencies": {
"bcrypt": "^5.1.1",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"file-type": "^18.7.0",
"form-data": "^4.0.3",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.1",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"sharp": "^0.32.6",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=24.0.0"
}
}