-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "no-notes",
"private": true,
"workspaces": [
"backend",
"packages/*"
],
"scripts": {
"dev:docker": "docker-compose up -d",
"dev:frontend": "npm --prefix frontend run dev",
"dev:backend": "cd backend && bun main.ts",
"dev": "npm run dev:docker && concurrently -n frontend,backend -c blue,green \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "npm --prefix frontend run build",
"start:frontend": "npm --prefix frontend run start",
"start:backend": "cd backend && bun main.ts",
"start": "npm run dev:docker && concurrently -n frontend,backend -c blue,green \"npm run start:frontend\" \"npm run start:backend\""
},
"packageManager": "bun@1.3.8",
"devDependencies": {
"concurrently": "^9.2.1"
}
}