This commit is contained in:
2022-07-19 11:57:39 +02:00
parent a5d98b76bd
commit 0bad5f275f
9 changed files with 136 additions and 16 deletions

View File

@@ -4,9 +4,13 @@
"dev:backend": "cd backend && cargo watch -x 'run --bin cryptgeon'",
"dev:front": "pnpm --prefix frontend run dev",
"dev:proxy": "node proxy.mjs",
"dev": "run-p dev:*"
"dev": "run-p dev:*",
"ci:prepare": "run-p ci:prepare:*",
"ci:prepare:backend": "cd backend && cargo build",
"ci:prepare:front": "pnpm --prefix frontend install"
},
"devDependencies": {
"@playwright/test": "^1.23.4",
"http-proxy": "^1.18.1",
"npm-run-all": "^4.1.5"
}