cal/apps/api/package.json

46 lines
1.2 KiB
JSON
Raw Normal View History

2022-05-17 14:33:18 -03:00
{
2022-03-18 10:42:42 -03:00
"name": "@calcom/api",
"version": "1.0.0",
"description": "Public API for Cal.com",
"main": "index.ts",
"repository": "git@github.com:calcom/api.git",
"author": "Cal.com Inc.",
"private": true,
"scripts": {
2022-06-22 16:30:02 -03:00
"build": "next build",
2022-06-14 17:08:19 -03:00
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
"dev": "PORT=3002 next dev",
2022-08-11 15:47:36 -03:00
"lint": "eslint . --ignore-path .gitignore",
2022-07-13 18:13:24 -03:00
"lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix",
2022-05-23 16:17:43 -03:00
"start": "PORT=3002 next start",
"type-check": "tsc --pretty --noEmit"
2022-03-18 10:42:42 -03:00
},
"devDependencies": {
"@calcom/tsconfig": "*",
2022-06-08 13:52:25 -03:00
"@calcom/types": "*",
2022-04-21 22:36:33 -03:00
"node-mocks-http": "^1.11.0"
2022-05-20 14:25:38 -03:00
},
2022-03-18 10:42:42 -03:00
"dependencies": {
"@calcom/app-store": "*",
"@calcom/core": "*",
"@calcom/dayjs": "*",
"@calcom/emails": "*",
"@calcom/features": "*",
"@calcom/lib": "*",
2022-12-15 19:11:54 -03:00
"@calcom/prisma": "*",
"@calcom/trpc": "*",
2022-11-25 09:47:35 -03:00
"@sentry/nextjs": "^7.20.0",
2022-06-08 13:52:25 -03:00
"bcryptjs": "^2.4.3",
"memory-cache": "^0.2.0",
"next": "^13.4.6",
"next-api-middleware": "^1.0.1",
"next-axiom": "^0.17.0",
"next-swagger-doc": "^0.3.6",
"next-validations": "^0.2.0",
"typescript": "^4.9.4",
2022-05-20 14:25:38 -03:00
"tzdata": "^1.0.30",
2022-06-02 10:55:52 -03:00
"uuid": "^8.3.2",
2023-08-31 16:30:28 -03:00
"zod": "^3.22.2"
2022-03-18 10:42:42 -03:00
}
2022-03-24 13:02:33 -03:00
}