* chore: add nix This could help contributers... contribute! * build: use turborepo pipelines for coordination instead of hacking it with sleeps and such.... * chore: update dev script now we're cooking with gas! no more hacks, no more awkward flags * chore: update pnpm version requirement you want to support v6?? then use a v6-compatible pnpm version * chore: update pnpm-lock
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "blitz-root",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"integration-tests/*",
|
|
"recipes/*"
|
|
],
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"prepare": "husky install",
|
|
"build": "turbo run build",
|
|
"build:apps": "turbo run buildapp --concurrency=1",
|
|
"dev": "turbo run dev --filter='./packages/*'",
|
|
"lint": "turbo run lint",
|
|
"test": "turbo run test",
|
|
"clean": "turbo run clean && rm -rf node_modules",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"pre-publish": "changeset add && changeset version && pnpm build && git add . && git commit -v",
|
|
"release": "cp README.md packages/blitz && pnpm build && changeset publish",
|
|
"publish-release": "changeset publish && git push --follow-tags"
|
|
},
|
|
"dependencies": {
|
|
"@blitzjs/manypkg": "0.19.1",
|
|
"@changesets/cli": "2.22.0",
|
|
"eslint": "8.27.0",
|
|
"husky": "8.0.2",
|
|
"jsdom": "^19.0.0",
|
|
"lint-staged": "13.0.3",
|
|
"next": "13.3.0",
|
|
"only-allow": "1.1.0",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-prisma": "4.4.0",
|
|
"pretty-quick": "3.1.3",
|
|
"turbo": "1.10.7",
|
|
"vitest": "0.25.3",
|
|
"wait-on": "6.0.1"
|
|
},
|
|
"npmClient": "pnpm",
|
|
"packageManager": "pnpm@8.6.6",
|
|
"manypkg": {
|
|
"ignoredRules": [
|
|
"EXTERNAL_MISMATCH"
|
|
]
|
|
}
|
|
}
|