-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 875 Bytes
/
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
{
"type": "module",
"scripts": {
"install:deps": "git submodule update --init --recursive; yarn",
"install:sandbox": "npm install -g @aztec/aztec-sandbox",
"clean": "rm -rf ./dest ./.tsbuildinfo",
"start:sandbox": "npx @aztec/aztec-sandbox",
"build": "aztec-cli compile ./contracts/fhe_auction --typescript ../../src/types",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest --runInBand)"
},
"dependencies": {
"@aztec/aztec.js": "^0.15.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.m?js$": "$1"
},
"testRegex": "./src/.*\\.test\\.(ts|mjs)$",
"rootDir": "./src"
}
}