forked from coral-xyz/anchor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "anchor-tests",
"private": true,
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
},
"workspaces": [
"anchor-cli-account",
"anchor-cli-idl",
"cashiers-check",
"cfo",
"chat",
"composite",
"custom-coder",
"errors",
"escrow",
"events",
"floats",
"ido-pool",
"interface",
"lockup",
"misc",
"multisig",
"optional",
"permissioned-markets",
"pda-derivation",
"relations-derivation",
"pyth",
"realloc",
"spl/token-proxy",
"swap",
"system-accounts",
"sysvars",
"tictactoe",
"typescript",
"validator-clone",
"zero-copy",
"declare-id",
"cpi-returns",
"multiple-suites",
"multiple-suites-run-single",
"bpf-upgradeable-state"
],
"dependencies": {
"@coral-xyz/anchor": "file:../ts/packages/anchor",
"@coral-xyz/spl-associated-token-account": "file:../ts/packages/spl-associated-token-account",
"@coral-xyz/spl-token": "file:../ts/packages/spl-token",
"@project-serum/common": "^0.0.1-beta.3",
"@project-serum/serum": "^0.13.60",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.68.0"
},
"resolutions": {
"@coral-xyz/anchor/@solana/web3.js": "^1.68.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"mocha": "9.2.2",
"prettier": "^2.5.1",
"ts-mocha": "^10.0.0",
"tsc": "^2.0.4",
"typescript": "^4.4.4"
}
}