-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathpackage.json
78 lines (78 loc) · 3.33 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
73
74
75
76
77
78
{
"name": "maci",
"version": "2.5.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/testing/zkeys",
"download-zkeys:test:relayer": "ts-node ./.github/scripts/downloadZkeys.ts test ./apps/relayer/zkeys",
"download-zkeys:test:coordinator": "ts-node ./.github/scripts/downloadZkeys.ts test ./apps/coordinator/zkeys",
"download-zkeys:ceremony": "ts-node ./.github/scripts/downloadZkeys.ts prod ./packages/testing/zkeys",
"download-zkeys:ceremony:relayer": "ts-node ./.github/scripts/downloadZkeys.ts prod ./apps/relayer/zkeys",
"download-zkeys:ceremony:coordinator": "ts-node ./.github/scripts/downloadZkeys.ts prod ./apps/coordinator/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:ceremony": "lerna run test:ceremony --scope \"maci-testing\"",
"test:integration": "lerna run test:integration --scope \"maci-testing\"",
"test:e2e": "lerna run test:e2e --scope \"maci-testing\"",
"test:unit": "lerna run test:unit --scope \"maci-testing\"",
"test": "lerna run test --ignore maci-testing",
"types": "lerna run types",
"docs": "lerna run docs",
"prepare": "is-ci || husky",
"genMaciKeyPair": "node packages/cli/build/ts/index.js genMaciKeyPair"
},
"author": "PSE",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.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": "^10.1.1",
"eslint-import-resolver-typescript": "^4.2.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lerna": "^8.2.1",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^5.0.5",
"tar": "^7.4.3",
"ts-node": "^10.9.1",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.5.0",
"typescript": "^5.8.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "20",
"pnpm": "9 || 10"
}
}