-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.82 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
{
"name": "aztec-boilerplate",
"version": "4.3.0",
"repository": "https://github.com/defi-wonderland/aztec-boilerplate.git",
"author": "Wonderland",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rm -rf ./src/artifacts ./target codegenCache.json",
"codegen": "aztec codegen target --outdir src/artifacts -f",
"compile": "aztec compile",
"test": "yarn test:nr && yarn test:js",
"test:js": "vitest run",
"test:nr": "aztec test",
"lint:prettier": "prettier '**/*.{js,ts}' --write",
"ccc": "yarn clean && yarn compile && yarn codegen",
"benchmark": "aztec-benchmark --suffix _base",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts}": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "4.3.0",
"@aztec/aztec.js": "4.3.0",
"@aztec/entrypoints": "4.3.0",
"@aztec/noir-contracts.js": "4.3.0",
"@aztec/pxe": "4.3.0",
"@aztec/stdlib": "4.3.0",
"@aztec/wallets": "4.3.0",
"@defi-wonderland/aztec-benchmark": "https://github.com/defi-wonderland/aztec-benchmark/releases/download/prerelease-022ee63/defi-wonderland-aztec-benchmark-4.2.0-prerelease.022ee63.tgz",
"@types/node": "25.0.10"
},
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.2.0",
"@types/node": "25.0.10",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"config": {
"aztecVersion": "4.3.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0"
},
"resolutions": {
"@noble/hashes": "1.8.0",
"@aztec/foundation": "4.3.0"
}
}