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-30 12:17:55 +00:00
|
|
|
"lint-fix": "next lint --fix && prettier --write .",
|
2022-03-26 04:28:53 +00:00
|
|
|
"test": "jest --detectOpenHandles",
|
2022-03-18 13:42:42 +00:00
|
|
|
"type-check": "tsc --pretty --noEmit",
|
2022-03-25 01:18:43 +00:00
|
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
|
|
"prepare": "husky install",
|
|
|
|
"pre-commit": "next lint"
|
2022-03-18 13:42:42 +00:00
|
|
|
},
|
|
|
|
"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-25 05:54:57 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
2022-03-23 21:22:57 +00:00
|
|
|
"babel-jest": "^27.5.1",
|
2022-03-25 01:18:43 +00:00
|
|
|
"husky": "^7.0.4",
|
2022-03-23 21:22:57 +00:00
|
|
|
"jest": "^27.5.1",
|
2022-03-30 14:56:24 +00:00
|
|
|
"node-mocks-http": "^1.11.0",
|
|
|
|
"prettier": "^2.6.1"
|
2022-03-18 13:42:42 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-03 15:47:18 +00:00
|
|
|
"@sentry/nextjs": "^6.19.3",
|
|
|
|
"next": "^12.1.4",
|
2022-03-28 22:27:14 +00:00
|
|
|
"next-api-middleware": "^1.0.1",
|
2022-03-30 14:56:24 +00:00
|
|
|
"next-swagger-doc": "^0.2.1",
|
2022-03-25 18:37:51 +00:00
|
|
|
"next-transpile-modules": "^9.0.0",
|
2022-03-24 20:25:35 +00:00
|
|
|
"next-validations": "^0.1.11",
|
2022-04-01 15:53:52 +00:00
|
|
|
"typescript": "^4.6.3"
|
2022-03-18 13:42:42 +00:00
|
|
|
}
|
2022-03-24 16:02:33 +00:00
|
|
|
}
|