forked from michaelelliot/zkpassport-aztec-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
45
46
47
48
49
50
51
52
{
"name": "zkpassport-aztec-sandbox",
"type": "module",
"private": true,
"license": "Apache-2.0",
"author": "@michaelelliot",
"scripts": {
"test": "./scripts/test.sh",
"compile": "./scripts/compile.sh",
"clear_cache": "./scripts/clear_cache.sh"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.m?js$": "$1"
},
"testRegex": "./src/.*\\.test\\.(ts|mjs)$",
"rootDir": "./src",
"verbose": true
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/leveldown": "^4.0.6",
"@types/levelup": "^5.1.5",
"@types/memdown": "^3.0.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"bun-types": "latest",
"eslint": "^8.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@aztec/aztec.js": "0.16.9",
"@aztec/bb.js": "0.16.9",
"@aztec/merkle-tree": "0.16.9",
"@aztec/noir-contracts": "0.16.9",
"@aztec/types": "0.16.9",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"memdown": "^6.1.1"
}
}