forked from defi-wonderland/aztec-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.48 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
{
"name": "aztec_standards",
"version": "0.0.0",
"repository": "https://github.com/defi-wonderland/aztec-standards.git",
"author": "Wonderland",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf ./src/artifacts ./target",
"codegen": "aztec codegen target --outdir src/artifacts",
"compile": "aztec-nargo compile",
"start:pxe": "docker compose -f $(dirname $(dirname $(which aztec)))/docker-compose.sandbox.yml -f docker-compose.override.yml up",
"test": "yarn test:js && yarn test:nr",
"test:js": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --config jest.integration.config.json",
"test:nr": "aztec test",
"lint:prettier": "prettier '**/*.{js,ts}' --write"
},
"lint-staged": {
"*.ts": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "0.76.3",
"@aztec/aztec.js": "0.76.3",
"@aztec/noir-contracts.js": "0.76.3",
"@types/node": "22.5.1"
},
"devDependencies": {
"@types/jest": "29.5.11",
"@types/mocha": "10.0.6",
"@types/node": "22.5.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"jest": {
"testTimeout": 200000
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}