2026-03-13 23:21:55 +00:00
|
|
|
{
|
|
|
|
|
"name": "workspace",
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"preinstall": "sh -c 'rm -f package-lock.json yarn.lock; case \"$npm_config_user_agent\" in pnpm/*) ;; *) echo \"Use pnpm instead\" >&2; exit 1 ;; esac'",
|
|
|
|
|
"build": "pnpm run typecheck && pnpm -r --if-present run build",
|
|
|
|
|
"typecheck:libs": "tsc --build",
|
2026-03-18 17:43:01 +00:00
|
|
|
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./artifacts/**\" --filter \"./scripts\" --if-present run typecheck",
|
2026-03-18 21:01:13 -04:00
|
|
|
"lint": "eslint .",
|
2026-03-18 17:43:01 +00:00
|
|
|
"test": "bash scripts/test-local.sh",
|
|
|
|
|
"test:prod": "BASE=https://timmy.replit.app bash timmy_test.sh"
|
2026-03-13 23:21:55 +00:00
|
|
|
},
|
|
|
|
|
"private": true,
|
|
|
|
|
"devDependencies": {
|
2026-03-18 21:01:13 -04:00
|
|
|
"eslint": "^10.0.3",
|
|
|
|
|
"prettier": "^3.8.1",
|
2026-03-13 23:21:55 +00:00
|
|
|
"typescript": "~5.9.2",
|
2026-03-18 21:01:13 -04:00
|
|
|
"typescript-eslint": "^8.57.1"
|
2026-03-13 23:21:55 +00:00
|
|
|
}
|
|
|
|
|
}
|