forked from DevOps-Jogja/ngevent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 820 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "ngevent",
"version": "1.0.0",
"description": "Event management platform with backend and frontend",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && bun run dev",
"dev:frontend": "cd frontend && bun run dev",
"build": "concurrently \"npm run build:backend\" \"npm run build:frontend\"",
"build:backend": "cd backend && bun run build",
"build:frontend": "cd frontend && bun run build",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && bun run start",
"start:frontend": "cd frontend && bun run preview"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}