20159262c1
- Introduce `getLeaveStatus` function in `packages/core/src/status-utils.ts` to determine leave-by status based on journey data - Mark Phase 1 mobile app tasks as complete in `CHECKLIST.md` - Add mobile workspace configurations and npm scripts
20 lines
506 B
JSON
20 lines
506 B
JSON
{
|
|
"name": "time-to-leave",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev -w apps/web",
|
|
"build": "npm run build -w apps/web",
|
|
"start": "npm run start -w apps/web",
|
|
"lint": "npm run lint -w apps/web",
|
|
"typecheck": "npm run typecheck -w apps/web",
|
|
"test": "npm run test -w apps/web",
|
|
"dev:mobile": "npm run start -w apps/mobile",
|
|
"typecheck:mobile": "npm run typecheck -w apps/mobile"
|
|
}
|
|
}
|