-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 926 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 926 Bytes
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
{
"name": "image-processing-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"build": "pnpm run build:frontend && pnpm run build:backend",
"build:frontend": "cd frontend && pnpm run build",
"build:backend": "cd backend && pnpm run build",
"dev": "concurrently \"pnpm run dev:frontend\" \"pnpm run dev:backend\"",
"dev:frontend": "cd frontend && pnpm run dev",
"dev:backend": "cd backend && pnpm run dev",
"start": "concurrently \"pnpm run start:frontend\" \"pnpm run start:backend\"",
"start:frontend": "cd frontend && pnpm run preview",
"start:backend": "cd backend && pnpm run start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.3.3"
}
}