-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 1.04 KB
/
package.json
File metadata and controls
19 lines (19 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "demopage",
"private": true,
"description": "kalandra.tech — monorepo task runner",
"scripts": {
"postinstall": "cd frontend && npm install",
"prepare": "git config core.hooksPath frontend/.githooks",
"aspire": "npm install && dotnet run --project aspire/Kalandra.AppHost",
"test": "dotnet test --verbosity normal && npm --prefix frontend run test:install && npm --prefix frontend test && npm run test:e2e",
"test:e2e": "supabase start && cross-env PUBLIC_API_URL=http://localhost:5000 npm --prefix frontend run build && concurrently --kill-others --success first --names backend,serve,test --prefix-colors blue,yellow,green \"cd backend/src/Kalandra.Api && dotnet run\" \"wait-on http://localhost:5000/health && serve frontend/dist -l 4321\" \"wait-on http://localhost:5000/health && wait-on http://localhost:4321 && npm --prefix frontend run test:e2e\""
},
"devDependencies": {
"concurrently": "^9.1.0",
"cross-env": "^10.1.0",
"serve": "^14.2.6",
"supabase": "^2.101.0",
"wait-on": "^9.0.10"
}
}