File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,20 +40,20 @@ See [`docs/OPERATIONS.md`](docs/OPERATIONS.md) for full operator procedures incl
4040## Local development
4141
4242``` bash
43- # Install
44- pnpm install # or npm install
43+ # Install (uses npm workspaces — installs root + apps/web deps in one shot)
44+ npm install
4545
4646# Copy env template and fill
4747cp .env.example .env
4848
4949# Run a dry-run tick (no transactions sent)
50- pnpm run dry-run
50+ npm run dry-run
5151
5252# Unit tests
53- pnpm test
53+ npm test
5454
5555# Web UI dev server
56- pnpm run web:dev
56+ npm run web:dev
5757```
5858
5959## Security
Original file line number Diff line number Diff line change 1919 "test" : " vitest run" ,
2020 "test:watch" : " vitest" ,
2121 "lint" : " tsc -p tsconfig.json --noEmit" ,
22- "web:dev" : " pnpm --filter @app/web dev " ,
23- "web:build" : " pnpm --filter @app/web build "
22+ "web:dev" : " npm run dev --workspace @app/web" ,
23+ "web:build" : " npm run build --workspace @app/web"
2424 },
2525 "dependencies" : {
2626 "ethers" : " ^6.13.0" ,
You can’t perform that action at this time.
0 commit comments