Scripts should be as pure as possible
parent
8f0d1f8c73
commit
0830abf057
|
@ -7,13 +7,11 @@
|
||||||
"author": "Cal.com Inc.",
|
"author": "Cal.com Inc.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"app-store:generate": "yarn workspace @calcom/app-store-cli generate",
|
"build": "next build",
|
||||||
"build": "yarn app-store:generate && next build",
|
|
||||||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
|
||||||
"dev": "PORT=3002 next dev",
|
"dev": "PORT=3002 next dev",
|
||||||
"lint-fix": "next lint --fix && prettier --write .",
|
"lint-fix": "next lint --fix && prettier --write .",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"prebuild": "cd ../.. && yarn workspace @calcom/prisma generate-schemas",
|
|
||||||
"start": "PORT=3002 next start",
|
"start": "PORT=3002 next start",
|
||||||
"test": "jest --detectOpenHandles --passWithNoTests",
|
"test": "jest --detectOpenHandles --passWithNoTests",
|
||||||
"type-check": "tsc --pretty --noEmit"
|
"type-check": "tsc --pretty --noEmit"
|
||||||
|
@ -25,6 +23,7 @@
|
||||||
"node-mocks-http": "^1.11.0"
|
"node-mocks-http": "^1.11.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@calcom/app-store-cli": "*",
|
||||||
"@calcom/prisma": "*",
|
"@calcom/prisma": "*",
|
||||||
"@sentry/nextjs": "^6.19.7",
|
"@sentry/nextjs": "^6.19.7",
|
||||||
"modify-response-middleware": "^1.1.0",
|
"modify-response-middleware": "^1.1.0",
|
||||||
|
|
Loading…
Reference in New Issue