mirror of
https://github.com/AtHeartEngineering/bandada.git
synced 2026-01-08 03:53:59 -05:00
69 lines
2.9 KiB
JSON
69 lines
2.9 KiB
JSON
{
|
|
"name": "bandada",
|
|
"description": "A system for managing privacy-preserving groups.",
|
|
"license": "MIT",
|
|
"repository": "git@github.com:bandada-infra/bandada.git",
|
|
"homepage": "https://github.com/bandada-infra/bandada",
|
|
"bugs": "https://github.com/bandada-infra/bandada/issues",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "yarn workspaces foreach --exclude bandada-docs -A -pi run start",
|
|
"dev": "yarn workspaces foreach --exclude contracts -A -pi run dev",
|
|
"test": "jest && yarn workspace contracts test",
|
|
"test:coverage": "yarn test:jest:coverage && yarn test:contracts:coverage",
|
|
"test:jest:coverage": "jest --coverage",
|
|
"test:contracts:coverage": "yarn workspace contracts test:coverage",
|
|
"build": "yarn workspaces foreach -A -t run build && yarn workspace contracts compile",
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && yarn workspace contracts lint",
|
|
"prettier": "prettier -c .",
|
|
"prettier:write": "prettier -w .",
|
|
"version:bump": "yarn workspaces foreach -A --no-private version -d ${0} && yarn version apply --all && git commit -am \"chore: v${0}\" && git tag v${0}",
|
|
"version:publish": "yarn workspaces foreach -A --no-private run build && yarn workspaces foreach -A --no-private npm publish --tolerate-republish",
|
|
"version:release": "changelogithub",
|
|
"commit": "cz",
|
|
"precommit": "lint-staged",
|
|
"postinstall": "husky install && yarn build"
|
|
},
|
|
"workspaces": [
|
|
"libs/*",
|
|
"apps/*",
|
|
"apps/contracts/contracts"
|
|
],
|
|
"packageManager": "yarn@4.1.1",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.0.0",
|
|
"@commitlint/config-conventional": "^17.4.3",
|
|
"@types/jest": "29.4.0",
|
|
"@types/node": "18.11.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"changelogithub": "0.12.7",
|
|
"commitizen": "^4.2.4",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.2.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-import": "^2.25.3",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"husky": "^8.0.0",
|
|
"jest": "29.4.3",
|
|
"lint-staged": "^12.4.2",
|
|
"prettier": "^2.8.4",
|
|
"ts-jest": "29.0.5",
|
|
"tslib": "^2.5.0",
|
|
"typescript": "^4.7.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"resolutions": {
|
|
"changelogithub@0.12.7": "patch:changelogithub@npm:0.12.7#.yarn/patches/changelogithub-npm-0.12.7-72f348805d.patch"
|
|
}
|
|
}
|