cal.pub0.org/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

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",
"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",
"husky": "^7.0.4",
2022-03-23 21:22:57 +00:00
"jest": "^27.5.1",
"node-mocks-http": "^1.11.0",
"prettier": "^2.6.1"
2022-03-18 13:42:42 +00:00
},
"dependencies": {
"@sentry/nextjs": "^6.19.3",
"next": "^12.1.4",
"next-api-middleware": "^1.0.1",
"next-swagger-doc": "^0.2.1",
"next-transpile-modules": "^9.0.0",
"next-validations": "^0.1.11",
"typescript": "^4.6.3"
2022-03-18 13:42:42 +00:00
}
2022-03-24 16:02:33 +00:00
}