-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.19 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.19 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
{
"scripts": {
"program:lint": "cargo fmt --all -- --check && cargo clippy -- --deny warnings",
"program:dylint": "cargo dylint --all --workspace",
"lint": "eslint .",
"test:fixed": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 packages/tests/buyBurnFixed.ts",
"test:switchboard": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 packages/tests/buyBurnSwitchBoard.ts",
"test:router": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 packages/tests/yieldRouter.ts",
"test:sender": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 packages/tests/fundSender.ts",
"test:all": " yarn test:router && yarn test:sender && yarn test:fixed && yarn test:switchboard",
"test": "anchor test",
"localnet": "anchor localnet",
"test:anchor": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 packages/tests/**/*.ts",
"program:build": "anchor build",
"program:deploy": "anchor deploy",
"getState:mainnet": "SOLANA_NETWORK=mainnet-beta bun packages/yield-router/scripts/getState.ts",
"route:mainnet": "SOLANA_NETWORK=mainnet-beta bun packages/yield-router/scripts/allocateYield.ts",
"manager": "bun run scripts/manager.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.94.0",
"bs58": "^6.0.0"
},
"devDependencies": {
"@coral-xyz/anchor-cli": "^0.30.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.0.0",
"@types/node": "^18",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"readline-sync": "^1.4.10",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5"
}
}