-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 741 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ziply",
"version": "1.0.0",
"description": "A minimal and dynamic web app for compressing images, merging PDFs, and converting image formats",
"main": "server/index.js",
"scripts": {
"build": "npm install && cd client && npm install && npm run build",
"start": "cd server && npm install && npm start",
"dev": "concurrently \"cd server && npm run dev\" \"cd client && npm run dev\"",
"install-all": "npm install && cd client && npm install && cd ../server && npm install"
},
"keywords": ["image-compression", "pdf-merge", "image-conversion", "nextjs", "express"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}