cal/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2022-02-09 19:17:10 -03:00
{
"name": "calcom-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
2022-02-10 23:12:57 -03:00
"db-deploy": "turbo run db-deploy",
2022-02-10 15:56:41 -03:00
"db-seed": "turbo run db-seed",
2022-02-09 20:59:34 -03:00
"deploy": "turbo run deploy",
2022-02-09 19:17:10 -03:00
"dev": "turbo run dev --parallel",
2022-02-09 19:37:50 -03:00
"dx": "turbo run dx",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"heroku-postbuild": "turbo run @calcom/web#build",
2022-02-09 20:59:34 -03:00
"lint": "turbo run lint",
"pre-commit": "lint-staged",
2022-02-09 20:59:34 -03:00
"prepare": "husky install",
2022-02-10 15:51:25 -03:00
"start": "turbo run start",
2022-02-10 15:30:32 -03:00
"test": "turbo run test",
"test-playwright": "yarn playwright test",
2022-02-15 14:44:30 -03:00
"test-e2e": "turbo run test-e2e",
2022-02-09 20:59:34 -03:00
"type-check": "turbo run type-check"
2022-02-09 19:17:10 -03:00
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "2.0.4",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
2022-02-09 19:32:31 -03:00
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.6"
},
"dependencies": {
2022-02-09 19:17:10 -03:00
"turbo": "latest"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"packages/prisma/schema.prisma": [
"prisma format"
2022-02-09 19:17:10 -03:00
]
},
"engines": {
"node": ">=14.x",
"npm": ">=7.0.0",
"yarn": ">=1.19.0 < 2.0.0"
},
"packageManager": "yarn@1.22.17"
}