-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 883 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 883 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
{
"type": "module",
"scripts": {
"anchor": "./scripts/anchor-local.sh",
"anchor:version": "./scripts/anchor-local.sh --version",
"anchor:build": "./scripts/anchor-local.sh build",
"build:idl": "npm run anchor:build && cp target/idl/sentinel.json frontend/src/app/idl.json",
"test": "ANCHOR_PROVIDER_URL=https://api.devnet.solana.com ANCHOR_WALLET=./ma-cle-pro.json node --loader=ts-node/esm ./node_modules/mocha/bin/mocha.js --extension ts --timeout 1000000 \"tests/**/*.ts\""
},
"dependencies": {
"@coral-xyz/anchor": "0.31.1",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.91.8"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"mocha": "^11.0.1",
"chai": "^4.5.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0"
}
}