-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 2.39 KB
/
package.json
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
{
"workspaces": [
"packages/client",
"packages/tests",
"packages/app"
],
"private": true,
"scripts": {
"program:lint": "cargo fmt --all -- --check && cargo clippy -- --deny warnings",
"program:dylint": "cargo dylint --all --workspace",
"lint": "yarn workspaces run lint",
"test": "anchor test",
"test:anchor": "yarn mocha -p ./tsconfig.json --no-parallel -t 1000000 packages/tests/**/*.ts",
"program:build": "anchor build",
"program:deploy": "solana program deploy target/deploy/sunrise_stake.so --program-id sunzv8N3A8dRHwUBvxgRDEbWKk8t7yiHR4FLRgFsTX6",
"build": "yarn workspaces run build",
"app:build": "yarn workspace @sunrisestake/app build",
"app:start": "yarn workspace @sunrisestake/app start",
"report:mainnet": "cross-env REACT_APP_SOLANA_NETWORK=mainnet-beta bun packages/scripts/get.ts",
"report:devnet": "cross-env REACT_APP_SOLANA_NETWORK=devnet bun packages/scripts/get.ts",
"extract:mainnet": "cross-env REACT_APP_SOLANA_NETWORK=mainnet-beta bun packages/scripts/extract.ts",
"updateEpochReport:mainnet": "cross-env REACT_APP_SOLANA_NETWORK=mainnet-beta bun packages/scripts/updateEpochReport.ts",
"rebalance:mainnet": "cross-env REACT_APP_SOLANA_NETWORK=mainnet-beta bun packages/scripts/rebalance.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@solana/web3.js": "^1.73.2"
},
"devDependencies": {
"@coral-xyz/anchor-cli": "^0.26.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"bs58": "^6.0.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-file-extension-in-import-ts": "^1.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "^7.32.2",
"lerna": "^6.4.1",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.3",
"typescript": "*"
},
"name": "app"
}