-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathpackage.json
59 lines (59 loc) · 2.1 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
{
"name": "@aztec/aztec3-packages",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"prepare": "node ./yarn-project-base/scripts/update_package_jsons.mjs && yarn workspaces foreach run prepare && workspaces-to-typescript-project-references --tsconfigPath tsconfig.json && prettier -w */tsconfig.json",
"prepare:check": "node ./yarn-project-base/scripts/update_package_jsons.mjs --check && workspaces-to-typescript-project-references --check --tsconfigPath tsconfig.json",
"docs": "typedoc --out docs/dist && cd docs && yarn serve",
"formatting": "yarn workspaces foreach -p -v run formatting",
"formatting:fix": "yarn workspaces foreach -p -v run formatting:fix",
"lint": "yarn eslint --cache --ignore-pattern l1-artifacts .",
"format": "yarn prettier --cache -w .",
"test": "yarn workspaces foreach --exclude @aztec/aztec3-packages --exclude @aztec/end-to-end --exclude @aztec/canary --exclude private-token -p -v run test",
"build": "yarn workspace @aztec/l1-artifacts build && tsc -b tsconfig.json",
"build:dev": "yarn workspace @aztec/l1-artifacts build && tsc -b tsconfig.json --watch",
"clean": "yarn workspaces foreach -p -v run clean"
},
"workspaces": [
"acir-simulator",
"archiver",
"aztec-node",
"aztec-rpc",
"aztec-sandbox",
"aztec.js",
"boxes/blank",
"boxes/private-token",
"canary",
"circuits.js",
"cli",
"docs",
"end-to-end",
"ethereum",
"foundation",
"key-store",
"l1-artifacts",
"merkle-tree",
"noir-compiler",
"noir-contracts",
"p2p",
"p2p-bootstrap",
"prover-client",
"rollup-provider",
"sequencer-client",
"types",
"world-state",
"yarn-project-base"
],
"prettier": "@aztec/foundation/prettier",
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.9.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"eslint": "^8.21.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8",
"typedoc": "^0.24.8",
"typescript": "^5.0.4"
}
}