forked from defi-wonderland/aztec-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
{
"name": "aztec-boilerplate",
"version": "0.0.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-nargo compile && aztec-postprocess-contract",
"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 -f",
"benchmark": "aztec-benchmark --suffix _base",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts}": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "2.0.3",
"@aztec/aztec.js": "2.0.3",
"@aztec/noir-contracts.js": "2.0.3",
"@defi-wonderland/aztec-benchmark": "2.0.0",
"@types/node": "22.5.1"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@types/mocha": "10.0.6",
"@types/node": "22.5.1",
"husky": "9.1.7",
"tsx": "4.20.4",
"lint-staged": "16.2.3",
"tsx": "4.20.5",
"prettier": "3.6.2",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"config": {
"aztecVersion": "2.0.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0"
}
}