2022-05-17 17:33:18 +00:00
|
|
|
{
|
2022-03-18 13:42:42 +00: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-14 22:04:40 +00:00
|
|
|
"app-store:generate": "yarn workspace @calcom/app-store-cli generate",
|
|
|
|
"build": "yarn app-store:generate && next build",
|
2022-06-14 20:08:19 +00:00
|
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
|
|
|
|
"dev": "PORT=3002 next dev",
|
2022-03-30 12:17:55 +00:00
|
|
|
"lint-fix": "next lint --fix && prettier --write .",
|
2022-05-23 19:17:43 +00:00
|
|
|
"lint": "next lint",
|
|
|
|
"prebuild": "cd ../.. && yarn workspace @calcom/prisma generate-schemas",
|
|
|
|
"start": "PORT=3002 next start",
|
2022-05-10 17:52:59 +00:00
|
|
|
"test": "jest --detectOpenHandles --passWithNoTests",
|
2022-05-23 19:17:43 +00:00
|
|
|
"type-check": "tsc --pretty --noEmit"
|
2022-03-18 13:42:42 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@calcom/tsconfig": "*",
|
2022-05-19 20:00:22 +00:00
|
|
|
"babel-jest": "^28.1.0",
|
2022-05-20 17:25:38 +00:00
|
|
|
"jest": "^28.1.0",
|
2022-04-22 01:36:33 +00:00
|
|
|
"node-mocks-http": "^1.11.0"
|
2022-05-20 17:25:38 +00:00
|
|
|
},
|
2022-03-18 13:42:42 +00:00
|
|
|
"dependencies": {
|
2022-04-22 01:36:33 +00:00
|
|
|
"@calcom/prisma": "*",
|
2022-05-05 16:18:00 +00:00
|
|
|
"@sentry/nextjs": "^6.19.7",
|
2022-04-30 17:46:04 +00:00
|
|
|
"modify-response-middleware": "^1.1.0",
|
2022-05-05 16:18:00 +00:00
|
|
|
"next": "^12.1.6",
|
2022-03-28 22:27:14 +00:00
|
|
|
"next-api-middleware": "^1.0.1",
|
2022-05-05 16:18:00 +00:00
|
|
|
"next-swagger-doc": "^0.3.4",
|
2022-03-25 18:37:51 +00:00
|
|
|
"next-transpile-modules": "^9.0.0",
|
2022-05-05 16:18:00 +00:00
|
|
|
"next-validations": "^0.2.0",
|
|
|
|
"typescript": "^4.6.4",
|
2022-05-20 17:25:38 +00:00
|
|
|
"tzdata": "^1.0.30",
|
2022-06-02 13:55:52 +00:00
|
|
|
"uuid": "^8.3.2",
|
2022-05-23 19:20:12 +00:00
|
|
|
"zod": "^3.16.0"
|
2022-03-18 13:42:42 +00:00
|
|
|
}
|
2022-03-24 16:02:33 +00:00
|
|
|
}
|