cal.pub0.org/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

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,
2022-05-20 20:39:42 +00:00
"engines": {
2022-05-20 21:02:17 +00:00
"node": ">=14.19.x"
2022-05-20 20:39:42 +00:00
},
2022-03-18 13:42:42 +00:00
"scripts": {
"build": "next build",
2022-05-23 19:17:43 +00:00
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev-real": "PORT=3002 next dev",
"dev": "next build && PORT=3002 next start",
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",
"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": "*",
"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": "*",
"@sentry/nextjs": "^6.19.7",
2022-04-30 17:46:04 +00:00
"modify-response-middleware": "^1.1.0",
"next": "^12.1.6",
"next-api-middleware": "^1.0.1",
"next-swagger-doc": "^0.3.4",
"next-transpile-modules": "^9.0.0",
"next-validations": "^0.2.0",
"typescript": "^4.6.4",
2022-05-20 17:25:38 +00:00
"tzdata": "^1.0.30",
2022-05-20 18:31:15 +00:00
"zod": "^3.14.4"
2022-03-18 13:42:42 +00:00
}
2022-03-24 16:02:33 +00:00
}