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": {
|
|
|
|
"dev": "PORT=3002 next",
|
|
|
|
"start": "next start",
|
|
|
|
"build": "next build",
|
|
|
|
"lint": "next lint",
|
2022-03-24 16:02:33 +00:00
|
|
|
"test": "jest --detectOpenHandles",
|
2022-03-18 13:42:42 +00:00
|
|
|
"type-check": "tsc --pretty --noEmit",
|
|
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-23 21:22:57 +00:00
|
|
|
"@babel/core": "^7.17.8",
|
|
|
|
"@babel/preset-env": "^7.16.11",
|
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
2022-03-18 13:42:42 +00:00
|
|
|
"@calcom/prisma": "*",
|
|
|
|
"@calcom/tsconfig": "*",
|
2022-03-23 21:22:57 +00:00
|
|
|
"babel-jest": "^27.5.1",
|
|
|
|
"jest": "^27.5.1",
|
|
|
|
"node-mocks-http": "^1.11.0",
|
2022-03-24 23:43:35 +00:00
|
|
|
"typescript": "^4.5.3"
|
2022-03-18 13:42:42 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-03-24 18:01:37 +00:00
|
|
|
"next": "^12.1.0",
|
2022-03-24 20:25:35 +00:00
|
|
|
"next-validations": "^0.1.11",
|
2022-03-24 18:01:37 +00:00
|
|
|
"zod": "^3.14.2"
|
2022-03-18 13:42:42 +00:00
|
|
|
}
|
2022-03-24 16:02:33 +00:00
|
|
|
}
|