forked from alrimarleskovar/RoundFinancial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.17 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "roundfi",
"version": "0.1.0",
"private": true,
"description": "RoundFi — cooperative on-chain credit protocol on Solana",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/alrimarleskovar/RoundFinancial.git"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"anchor:build": "anchor build",
"anchor:test": "anchor test",
"anchor:keys": "anchor keys sync",
"anchor:clean": "anchor clean",
"lint": "prettier --check .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit -p .",
"devnet:airdrop": "tsx scripts/devnet/airdrop.ts",
"devnet:deploy": "tsx scripts/devnet/deploy.ts",
"devnet:export-pk": "tsx scripts/devnet/export-pk.ts",
"devnet:init": "tsx scripts/devnet/init-protocol.ts",
"devnet:seed": "tsx scripts/devnet/seed-pool.ts",
"devnet:seed-members": "tsx scripts/devnet/seed-members.ts",
"devnet:seed-cycle": "tsx scripts/devnet/seed-cycle.ts",
"devnet:seed-claim": "tsx scripts/devnet/seed-claim.ts",
"devnet:seed-topup": "tsx scripts/devnet/seed-topup.ts",
"devnet:seed-release": "tsx scripts/devnet/seed-release.ts",
"devnet:seed-yield-init": "tsx scripts/devnet/seed-yield-init.ts",
"devnet:seed-yield-deposit": "tsx scripts/devnet/seed-yield-deposit.ts",
"devnet:seed-yield-harvest": "tsx scripts/devnet/seed-yield-harvest.ts",
"devnet:seed-evlist": "tsx scripts/devnet/seed-evlist.ts",
"devnet:seed-evbuy": "tsx scripts/devnet/seed-evbuy.ts",
"devnet:seed-close": "tsx scripts/devnet/seed-close.ts",
"devnet:seed-default": "tsx scripts/devnet/seed-default.ts",
"devnet:verify-build": "bash scripts/devnet/verify-build.sh",
"devnet:verify-check": "bash scripts/devnet/verify-check.sh",
"devnet:verify-redeploy": "bash scripts/devnet/verify-redeploy.sh",
"devnet:verify-onchain": "bash scripts/devnet/verify-onchain.sh",
"test:parity": "pnpm exec ts-mocha -p ./tests/tsconfig.json -t 60000 'tests/parity.spec.ts'",
"test:events": "pnpm exec ts-mocha -p ./tests/tsconfig.json -t 60000 'tests/events.spec.ts'",
"test:economic-parity-l1": "pnpm exec ts-mocha -p ./tests/tsconfig.json -t 60000 -g 'L1 stress-lab sanity|toggleCell|runSimulation' 'tests/economic_parity.spec.ts'",
"test:economic-parity": "pnpm exec ts-mocha -p ./tests/tsconfig.json -t 120000 'tests/economic_parity.spec.ts'",
"test:bankrun": "pnpm exec ts-mocha -p ./tests/tsconfig.json -t 120000 'tests/economic_parity.spec.ts' 'tests/lifecycle.spec.ts' 'tests/edge_*.spec.ts'"
},
"devDependencies": {
"@roundfi/sdk": "workspace:*",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"anchor-bankrun": "^0.5.0",
"chai": "^4.5.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"solana-bankrun": "^0.4.0",
"ts-mocha": "^10.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@metaplex-foundation/mpl-core": "^1.1.1",
"@metaplex-foundation/umi": "^0.9.2",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3",
"dotenv": "^16.4.5"
}
}