-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.55 KB
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
{
"name": "chicmoz",
"version": "1.0.0",
"repository": "git@github.com:aztec-scan/chicmoz.git",
"license": "Apache-2.0",
"packageManager": "yarn@4.0.1",
"workspaces": [
"services/*",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-sort-json": "4.1.1",
"typescript": "5.8.3"
},
"scripts": {
"build:contract-compiler": "bash scripts/build_contract_compiler.sh",
"build:contract-compiler-from-nargo": "bash scripts/build_contract_compiler_from_nargo.sh",
"build:packages": "yarn workspaces foreach --parallel -j 1 --all --topological-dev --verbose --include '@chicmoz-pkg/*' run build",
"lint:packages": "yarn workspaces foreach --parallel -j 1 --all --topological-dev --verbose --include '@chicmoz-pkg/*' run lint",
"build-all-slow": "yarn workspaces foreach --all --topological-dev --verbose --include '@chicmoz-pkg/*' run build && yarn workspaces foreach --all --topological-dev --verbose --include 'services/*' run build",
"build": "yarn workspaces foreach --parallel -j 1 --all --topological-dev --verbose run build",
"lint": "yarn workspaces foreach --parallel -j 1 --all --topological-dev --verbose run lint",
"test": "yarn workspaces foreach --parallel -j 1 --all --topological-dev --verbose run test-once",
"g:lint": "cd $INIT_CWD && eslint --fix",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependenciesMeta": {
"prettier-plugin-organize-imports@4.1.0": {
"unplugged": true
},
"prettier-plugin-sort-json@4.1.1": {
"unplugged": true
},
"tslib@2.6.3": {
"unplugged": true
}
},
"resolutions": {
"viem": "2.20.0",
"@aztec/accounts": "5.0.0-rc.2",
"@aztec/aztec.js": "5.0.0-rc.2",
"@aztec/bb.js": "5.0.0-rc.2",
"@aztec/bb-prover": "5.0.0-rc.2",
"@aztec/builder": "5.0.0-rc.2",
"@aztec/constants": "5.0.0-rc.2",
"@aztec/entrypoints": "5.0.0-rc.2",
"@aztec/ethereum": "5.0.0-rc.2",
"@aztec/foundation": "5.0.0-rc.2",
"@aztec/l1-artifacts": "5.0.0-rc.2",
"@aztec/noir-contracts.js": "5.0.0-rc.2",
"@aztec/protocol-contracts": "5.0.0-rc.2",
"@aztec/pxe": "5.0.0-rc.2",
"@aztec/simulator": "5.0.0-rc.2",
"@aztec/stdlib": "5.0.0-rc.2",
"@aztec/wallets": "5.0.0-rc.2"
}
}