cryptgeon/package.json

22 lines
788 B
JSON
Raw Normal View History

2021-05-02 15:44:42 +02:00
{
"scripts": {
"dev:docker": "docker-compose up redis",
2022-01-02 23:46:08 +01:00
"dev:backend": "cd backend && cargo watch -x 'run --bin cryptgeon'",
"dev:front": "pnpm --prefix frontend run dev",
2021-12-20 18:14:59 +01:00
"dev:proxy": "node proxy.mjs",
"dev": "run-p dev:*",
"test": "playwright test --project chrome firefox safari",
"test:local": "playwright test --project local",
"ci:server": "cd backend && SIZE_LIMIT=10MiB LISTEN_ADDR=0.0.0.0:1234 cargo run",
"ci:prepare": "run-p ci:prepare:*",
"ci:prepare:backend": "cd backend && cargo build",
"ci:prepare:front": "pnpm --prefix frontend install && pnpm --prefix frontend run build"
2021-05-02 15:44:42 +02:00
},
"devDependencies": {
"@playwright/test": "^1.23.4",
"@types/node": "16",
2021-12-20 18:14:59 +01:00
"http-proxy": "^1.18.1",
2021-11-11 13:37:21 +01:00
"npm-run-all": "^4.1.5"
2021-05-02 15:44:42 +02:00
}
}