-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.49 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.49 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
{
"name": "beatbridge",
"version": "0.0.1",
"scripts": {
"circuit-new": "nargo new circuits/$@",
"circuit-test": "cd $@; nargo test --show-output",
"circuit-generate-solidity-verifier": "cd $@; nargo codegen-verifier",
"export-solidity": "bash ./scripts/export_sol_verifiers.sh",
"export-json": "bash ./scripts/compile_circuits.sh && ts-node scripts/export_circuits_src.ts",
"test": "mocha --require ts-node/register --require dotenv/config --timeout 10000 --exit --recursive ./test/**/*.ts",
"lint": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore ./src/**/*.ts ./test/**/*.ts",
"lint-staged": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.0.3",
"envfile": "^6.18.0",
"json-rpc-2.0": "^1.7.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@noir-lang/backend_barretenberg": "0.38.0",
"@noir-lang/noir_js": "0.38.0",
"@noir-lang/types": "0.38.0",
"@types/chai": "^4.3.5",
"@types/eslint": "^8",
"@types/mocha": "^9.1.1",
"@types/node": "^20.3.2",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"rollup-plugin-copy": "^3.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}