forked from bandada-infra/bandada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "bandada",
"description": "A system for managing privacy-preserving groups.",
"license": "MIT",
"repository": "[email protected]:privacy-scaling-explorations/bandada.git",
"homepage": "https://github.com/privacy-scaling-explorations/bandada",
"bugs": "https://github.com/privacy-scaling-explorations/bandada/issues",
"private": true,
"scripts": {
"start": "yarn workspaces foreach -pi run start",
"dev": "yarn workspaces foreach -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 -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 --no-private version -d ${0} && yarn version apply --all && git commit -am \"chore: v${0}\" && git tag v${0}",
"version:publish": "yarn workspaces foreach --no-private run build && yarn workspaces foreach --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": "[email protected]",
"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": {
"[email protected]": "patch:changelogithub@npm:0.12.7#.yarn/patches/changelogithub-npm-0.12.7-72f348805d.patch"
}
}