-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.01 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
{
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"lightv": "light test-validator",
"depl": "anchor deploy --provider.cluster http://localhost:8899",
"depd": "anchor deploy --provider.cluster https://api.devnet.solana.com",
"testl": "anchor test --provider.cluster http://localhost:8899 --skip-deploy --skip-local-validator --skip-build",
"testd": "anchor test --provider.cluster https://api.devnet.solana.com --skip-deploy --skip-local-validator --skip-build"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@lightprotocol/stateless.js": "^0.13.0",
"@noble/hashes": "^1.5.0",
"@solana/web3.js": "^1.95.3"
},
"devDependencies": {
"@featherlabs/feather-assets": "workspace:*",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5"
}
}