cal.pub0.org/package.json

33 lines
844 B
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-23 21:22:57 +00:00
"test": "jest",
2022-03-18 13:42:42 +00:00
"type-check": "tsc --pretty --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"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-23 21:22:57 +00:00
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"node-mocks-http": "^1.11.0",
"typescript": "^4.5.3",
"zod": "^3.14.2"
2022-03-18 13:42:42 +00:00
},
"dependencies": {
2022-03-23 21:29:00 +00:00
"next": "^12.1.0"
2022-03-18 13:42:42 +00:00
}
}