-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.97 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
{
"name": "excubiae",
"description": "An on-chain flexible & modular framework for implementing custom gatekeepers.",
"license": "MIT",
"repository": "[email protected]:privacy-scaling-explorations/excubiae.git",
"homepage": "https://github.com/privacy-scaling-explorations/excubiae.git",
"bugs": "https://github.com/privacy-scaling-explorations/excubiae/issues",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"packages/contracts/contracts"
],
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"changelogithub": "^0.13.10",
"czg": "^1.9.4",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "5.3"
},
"scripts": {
"build": "yarn build:docs && yarn build:website && yarn build:packages",
"build:packages": "yarn workspaces foreach -Apt --no-private run build",
"build:docs": "yarn workspace excubiae-docs build && yarn workspace excubiae-contracts docs:forge",
"build:website": "yarn workspace excubiae-website build",
"compile:contracts": "yarn workspace excubiae-contracts compile",
"test": "yarn test:contracts",
"test:coverage": "yarn test:contracts-coverage",
"test:contracts": "yarn workspace excubiae-contracts test",
"test:contracts-coverage": "yarn workspace excubiae-contracts test:coverage",
"format": "prettier -c . && yarn workspace excubiae-docs format && yarn workspace excubiae-contracts format:forge",
"format:write": "prettier -w . && yarn workspace excubiae-docs format:write && yarn workspace excubiae-contracts format:forge && yarn workspace excubiae-docs format",
"lint": "eslint . && yarn workspace excubiae-contracts lint",
"lint:fix": "eslint . --fix && yarn workspace excubiae-contracts lint:fix",
"version:bump": "scripts/version.ts ${0}",
"version:publish": "scripts/publish.ts",
"version:release": "changelogithub",
"clean": "scripts/clean-apps.ts && scripts/clean-packages.ts && rimraf node_modules coverage",
"remove:stable-version-field": "scripts/remove-stable-version-field.ts && yarn format:write",
"precommit": "lint-staged",
"postinstall": "husky && git config --local core.editor cat"
}
}