* add eslint package * upgrade lint * remove linting for generated files from trpc * ts imports * add missing features lint script * enable turbo ui * reference workspace deps correctly * fixes * Fix eslint test * Fix eslint test * npm run all back * fix e2e * fix e2e * fix e2e --------- Co-authored-by: Alex van Andel <me@alexvanandel.com>
29 lines
759 B
JSON
29 lines
759 B
JSON
{
|
|
"name": "@calcom/trpc",
|
|
"sideEffects": false,
|
|
"private": true,
|
|
"description": "Shared tRPC library for Cal.com",
|
|
"authors": "zomars",
|
|
"version": "1.0.0",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . ",
|
|
"build": "yarn trpc:generate || true",
|
|
"trpc:generate": "yarn tsc --project tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.17.15",
|
|
"@trpc/client": "11.0.0-next-beta.222",
|
|
"@trpc/next": "11.0.0-next-beta.222",
|
|
"@trpc/react-query": "11.0.0-next-beta.222",
|
|
"@trpc/server": "11.0.0-next-beta.222",
|
|
"superjson": "1.9.1",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@calcom/eslint-config": "workspace:*",
|
|
"typescript": "^5.9.0-beta"
|
|
}
|
|
}
|