Files
hub-monorepo/package.json
Paul Fletcher-Hill 3b68731981 chore: introduce changesets for package versioning and publishing (#433)
* changeset initial commit

* update root package.json

* use changelog-git package for changesets
2023-01-17 00:11:56 -05:00

47 lines
1.4 KiB
JSON

{
"name": "hub",
"description": "A monorepo for the Farcaster Hub",
"version": "0.0.0",
"private": true,
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "./node_modules/.bin/turbo run build",
"clean": "./node_modules/.bin/turbo run clean",
"dev": "./node_modules/.bin/turbo run dev --parallel",
"flatc": "flatc --ts --ts-flat-files --gen-object-api -o packages/flatbuffers/src/generated packages/flatbuffers/src/schemas/*.fbs",
"test": "./node_modules/.bin/turbo run test",
"test:ci": "./node_modules/.bin/turbo run test:ci -- --passWithNoTests",
"lint": "./node_modules/.bin/turbo run lint --parallel",
"prepare": "husky install",
"publish-packages": "./node_modules/.bin/turbo run build lint && changeset version && changeset publish"
},
"engines": {
"npm": ">=8.0.0",
"node": "^18.7.0"
},
"devDependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.0",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.24",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.14",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"turbo": "^1.6.3",
"typescript": "4.9.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}