19 lines
632 B
JSON
19 lines
632 B
JSON
{
|
|
"name": "ten99timecard",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Income logging, projections, and quarterly tax calculations for US 1099 workers",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"client",
|
|
"server"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=client",
|
|
"dev:server": "npm run dev --workspace=server",
|
|
"build": "npm run build --workspace=client && npm run build --workspace=server",
|
|
"test": "npm run test --workspace=client && npm run test --workspace=server",
|
|
"test:client": "npm run test --workspace=client",
|
|
"test:server": "npm run test --workspace=server"
|
|
}
|
|
}
|