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-04-30 21:57:57 +00:00
|
|
|
"dev": "next build && PORT=3002 next start",
|
2022-05-17 17:33:18 +00:00
|
|
|
"dev-real": "PORT=3002 next dev",
|
2022-04-30 21:57:57 +00:00
|
|
|
"start": "PORT=3002 next start",
|
2022-03-18 13:42:42 +00:00
|
|
|
"build": "next build",
|
|
|
|
"lint": "next lint",
|
2022-03-30 12:17:55 +00:00
|
|
|
"lint-fix": "next lint --fix && prettier --write .",
|
2022-05-10 17:52:59 +00:00
|
|
|
"test": "jest --detectOpenHandles --passWithNoTests",
|
2022-03-18 13:42:42 +00:00
|
|
|
"type-check": "tsc --pretty --noEmit",
|
2022-04-22 01:36:33 +00:00
|
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
2022-03-18 13:42:42 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@calcom/tsconfig": "*",
|
2022-05-05 16:18:00 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
|
|
"babel-jest": "^28.0.3",
|
|
|
|
"jest": "^28.0.3",
|
2022-04-22 01:36:33 +00:00
|
|
|
"node-mocks-http": "^1.11.0"
|
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-04-24 21:56:53 +00:00
|
|
|
"tzdata": "^1.0.30"
|
2022-03-18 13:42:42 +00:00
|
|
|
}
|
2022-03-24 16:02:33 +00:00
|
|
|
}
|