* fix eslint config * fix * add it to dev dep * fix * sync eslint version * force ts-node to compile our ESLint plugin's TS files into CommonJS (which ESLint requires) * fix some lint errors * fix lint errors * remove duplicate classname * make @typescript-eslint/ban-types a warn for packages/trpc files * fix lint errors in trpc * fix lint errors in trpc - 2 * fix * fix * fix lint warnings
32 lines
705 B
JSON
32 lines
705 B
JSON
{
|
|
"name": "@calcom/example-app-credential-sync",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "PORT=5100 next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/atoms": "*",
|
|
"@prisma/client": "5.4.2",
|
|
"next": "14.0.4",
|
|
"prisma": "^5.7.1",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.3.1",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"autoprefixer": "^10.0.1",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.34.0",
|
|
"eslint-config-next": "14.0.4",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.3.0",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|