-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 2.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 2.11 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
{
"sideEffects": false,
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"generate_legacy_idl": "avm use 0.28.0 && anchor build && mkdir -p ./target/idl29/ && cp -p -r ./target/types/*.ts ./target/idl29 && avm use 0.30.0 && anchor build",
"build-interfaces": "cd packages/libreplex-idls && yarn package && yarn build && cd .. && cd libreplex-sdk && yarn build && cd ../..",
"build": "lerna run clean && lerna run build",
"libre-cli": "ts-node src/cli/index.ts",
"libreplex_nifty_hybrid:deploy:devnet": "anchor deploy -p libreplex_nifty_hybrid --provider.cluster https://api.devnet.solana.com --provider.wallet ~/.config/solana/libreplex-deployer.json",
"libreplex_mx:deploy:devnet": "anchor deploy -p libreplex_mx --provider.cluster https://api.devnet.solana.com --provider.wallet ~/.config/solana/libreplex-deployer.json",
"libreplex_pipelines:deploy:devnet": "anchor deploy -p libreplex_pipelines --provider.cluster https://api.devnet.solana.com --provider.wallet ~/.config/solana/libreplex-deployer.json",
"libreplex_pipelines:deploy:mainnet": "anchor deploy -p libreplex_pipelines --provider.cluster https://api.mainnet-beta.solana.com --provider.wallet ~/.config/solana/libreplex-deployer.json",
"libreplex_liquidity:deploy:devnet": "anchor deploy -p libreplex_liquidity --provider.cluster https://api.devnet.solana.com --provider.wallet ~/.config/solana/libreplex-deployer.json",
"libreplex_liquidity:deploy:mainnet": "anchor build -p libreplex_liquidity&& anchor deploy -p libreplex_liquidity --provider.cluster https://api.mainnet-beta.solana.com --provider.wallet ~/.config/solana/libreplex-deployer.json",
"lint": "next lint"
},
"dependencies": {
"@coral-xyz/anchor": "0.30.0",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.73.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^9.0.0",
"@types/node": "20.2.3",
"@types/react": "18.2.7",
"chai": "^4.3.7",
"js-sha256": "0.9.0",
"lefthook": "^1.4.9",
"lerna": "^7.1.5",
"mocha": "^9.0.3",
"ts-mocha": "^10.0.0",
"typescript": "5.0.4"
}
}