-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (38 loc) · 1.18 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
39
40
41
42
{
"name": "anchor-example",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/WrRaThY/anchor-example"
},
"scripts": {
"build": "anchor build",
"deploy:local": "anchor deploy",
"deploy:dev": "anchor deploy --provider.cluster=devnet",
"upgrade:dev": "anchor upgrade target/deploy/anchor_example.so --provider.cluster=devnet --program-id <TODO>",
"deploy:test": "anchor deploy --provider.cluster=testnet",
"upgrade:test": "anchor upgrade target/deploy/anchor_example.so --provider.cluster=testnet --program-id <TODO>",
"test": "anchor test",
"test:debug": "debug=true anchor test",
"test:skip-build": "anchor test --skip-build"
},
"dependencies": {
"@project-serum/anchor": "^0.13.2",
"@solana/spl-token": "^0.1.6",
"@solana/web3.js": "^1.23.0"
},
"devDependencies": {
"@project-serum/serum": "^0.13.54",
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.2.15",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.2",
"assert": "^2.0.0",
"chai": "^4.3.0",
"mocha": "^8.4.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5"
}
}