cal.pub0.org/package.json

40 lines
1.1 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,
"scripts": {
"dev": "next build && PORT=3002 next start",
2022-05-17 17:33:18 +00:00
"dev-real": "PORT=3002 next dev",
"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 .",
"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": "*",
"@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": "*",
"@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-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
}