Integrate a new testkit endpoint and update package.json scripts to enable automated testing via `pnpm test` and `pnpm test:prod`, including a new test case for request body size limits. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 418bf6f8-212b-4bb0-a7a5-8231a061da4e Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 60472e18-59b7-4877-a9a2-16381573ab68 Replit-Helium-Checkpoint-Created: true
19 lines
696 B
JSON
19 lines
696 B
JSON
{
|
|
"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",
|
|
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./artifacts/**\" --filter \"./scripts\" --if-present run typecheck",
|
|
"test": "bash scripts/test-local.sh",
|
|
"test:prod": "BASE=https://timmy.replit.app bash timmy_test.sh"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"typescript": "~5.9.2",
|
|
"prettier": "^3.8.1"
|
|
}
|
|
}
|