-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.27 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
{
"license": "ISC",
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"light:private-payments": "ts-node app/light/private-payments.ts",
"init-pool": "ts-node scripts/init-permanent-pool.ts",
"setup-per": "ts-node scripts/setup-per-permission.ts",
"test:velvetmesh:devnet": "ts-mocha -p ./tsconfig.json -t 600000 \"tests/velvet_mesh_devnet.ts\"",
"test:sponsors:live": "ts-mocha -p ./tsconfig.json -t 120000 \"tests/sponsor_adapters_live.ts\"",
"ts-mocha": "ts-mocha -p ./tsconfig.json -t 1000000 \"tests/**/*.ts\""
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@inco/solana-sdk": "^0.0.2",
"@lightprotocol/compressed-token": "0.23.0-beta.3",
"@lightprotocol/stateless.js": "0.23.0-beta.3",
"@lightprotocol/zk.js": "0.3.2-alpha.14",
"@magicblock-labs/ephemeral-rollups-sdk": "^0.8.0",
"@solana/web3.js": "^1.98.0",
"@umbra-privacy/sdk": "^4.0.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}