cal/package.json

46 lines
1.0 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-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}\"",
2022-02-09 20:59:34 -03:00
"lint": "turbo run lint",
"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",
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",
2022-02-09 19:17:10 -03:00
"prettier-plugin-tailwindcss": "^0.1.6",
"turbo": "latest"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"engines": {
"node": ">=14.x",
"npm": ">=7.0.0",
"yarn": ">=1.19.0 < 2.0.0"
},
"packageManager": "yarn@1.22.17"
}