forked from qazzxxx/cloudimgs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "cloudimgs",
"version": "1.2.3",
"description": "A modern image hosting application with React frontend and Node.js backend",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"build-client": "cd client && npm run build",
"heroku-postbuild": "npm run install-client && npm run build-client"
},
"keywords": [
"image-hosting",
"react",
"nodejs",
"express"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"axios": "^1.10.0",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"exifr": "^7.1.3",
"express": "^4.21.2",
"fs-extra": "^11.3.0",
"mime": "^4.0.7",
"mime-types": "^3.0.1",
"multer": "^1.4.5-lts.2",
"music-metadata": "^7.14.0",
"path": "^0.12.7",
"sharp": "^0.34.2",
"thumbhash": "^0.1.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}