-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "local-storage-api",
"version": "1.0.0",
"description": "A sophisticated Node.js web API for file storage with S3-like functionality, MySQL metadata storage, and JWT authentication",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"panel": "node panel/server.js",
"dev:all": "concurrently \"npm run dev\" \"npm run panel\"",
"db:sync": "node scripts/syncDatabase.js",
"db:seed": "node scripts/seedDatabase.js"
},
"keywords": [
"file-storage",
"api",
"nodejs",
"express",
"mysql",
"jwt",
"s3-like"
],
"author": "",
"license": "MIT",
"dependencies": {
"argon2": "^0.31.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"sequelize": "^6.35.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}