forked from Sacura1/aztec-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.22 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
{
"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",
"codegen": "aztec codegen target --outdir src/artifacts",
"compile": "aztec-nargo 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 -f",
"prepare": "husky"
},
"lint-staged": {
"*.ts": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "0.87.5",
"@aztec/aztec.js": "0.87.5",
"@aztec/noir-contracts.js": "0.87.5",
"@defi-wonderland/aztec-benchmark": "1.0.0"
},
"devDependencies": {
"@types/node": "22.5.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "^3.2.4"
},
"config": {
"aztecVersion": "0.87.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}