-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 785 Bytes
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
{
"license": "ISC",
"scripts": {
"indexer": "tsx indexer/app.ts",
"app": "cd app && pnpm dev",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@solana/web3.js": "^1.98.4",
"@zk-kit/incremental-merkle-tree": "^1.1.0",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"express": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/circomlibjs": "^0.1.6",
"@types/express": "^5.0.6",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"tsx": "^4.23.1",
"typescript": "^5.7.3"
}
}