-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 931 Bytes
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
{
"name": "seeker-staking",
"license": "ISC",
"scripts": {
"surfpool": "PATH=$HOME/.local/bin:$PATH surfpool start --no-tui --ci --legacy-anchor-compatibility --anchor-test-config-path Anchor.toml --network mainnet --port 8899 --ws-port 8900 --no-studio --yes",
"test": "PATH=$HOME/.local/bin:$PATH anchor test --skip-local-validator --skip-build --provider.cluster http://127.0.0.1:8899",
"test:surfpool": "yarn test",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "1.98.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^25.6.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.3"
}
}