-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
72 lines (72 loc) · 2.76 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
69
70
71
72
{
"name": "maci",
"version": "2.4.0",
"description": "Minimal Anti-Collusion Infrastructure",
"repository": "https://github.com/privacy-scaling-explorations/maci",
"license": "MIT",
"scripts": {
"benchmarks": "lerna run benchmarks",
"build": "lerna run build --ignore=website",
"build:circuits-c": "lerna run build-test-circuits-c --scope \"maci-circuits\"",
"build:circuits-wasm": "lerna run build-test-circuits-wasm --scope \"maci-circuits\"",
"setup:zkeys": "NODE_OPTIONS=--max-old-space-size=4096 lerna run gen-zkeys --scope \"maci-circuits\"",
"clean": "lerna exec -- rm -rf node_modules build && rm -rf node_modules",
"commit": "git cz",
"download-zkeys:test": "ts-node ./.github/scripts/downloadZkeys.ts test ./packages/cli/zkeys",
"download-zkeys:ceremony": "ts-node ./.github/scripts/downloadZkeys.ts prod ./packages/cli/zkeys",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"lint:ts": "eslint './**/**/*.ts' './**/**/*.tsx'",
"lint:ts:fix": "pnpm run lint:ts --fix",
"lint:sol": "solhint './packages/contracts/contracts/**/*.sol'",
"lint:sol:fix": "pnpm run lint:sol --fix --noPrompt",
"test:cli": "lerna run test --scope \"maci-cli\"",
"test:cli-ceremony": "lerna run test:ceremony --scope \"maci-cli\"",
"test:integration": "lerna run test --scope \"maci-integrationtests\"",
"test": "lerna run test --ignore maci-integrationtests --ignore maci-cli",
"types": "lerna run types",
"docs": "lerna run docs",
"prepare": "is-ci || husky"
},
"author": "PSE",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"conventional-changelog-conventionalcommits": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"tar": "^7.4.3",
"ts-node": "^10.9.1",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "20",
"pnpm": "9"
}
}