-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.96 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.96 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"clean": "npx shx rm -rf {.,packages/*}/{node_modules,lib,dist}",
"fmt": "cargo fmt --check",
"clippy": "cargo clippy --all-targets -- -D warnings -A clippy::result_large_err -A clippy::too_many_arguments -A ambiguous_glob_reexports -A unexpected-cfgs",
"generate-idl-docs": "ts-node -T scripts/generate-idl-docs.ts",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"pre-commit": [
"fmt"
],
"private": true,
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@coral-xyz/borsh": "^0.2.6",
"@helium/crypto": "^4.14.2",
"@helium/modular-governance-idls": "^0.1.5-alpha.0",
"@helium/nft-proxy-sdk": "^0.1.5-alpha.0",
"@helium/proposal-sdk": "^0.1.5-alpha.0",
"@helium/transactions": "^3.38.0",
"@helium/tuktuk-idls": "^0.0.9",
"@metaplex-foundation/mpl-bubblegum": "^0.7.0",
"@pythnetwork/client": "^2.8.0",
"@pythnetwork/pyth-solana-receiver": "^0.9.1",
"@solana/spl-account-compression": "^0.1.5-alpha.0",
"angry-purple-tiger": "^1.0.5",
"camelcase": "6.3.0",
"long": "^5.2.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@helium/anchor-resolvers": "workspace:^",
"@helium/circuit-breaker-sdk": "workspace:^",
"@helium/data-credits-sdk": "workspace:^",
"@helium/helium-entity-manager-sdk": "workspace:^",
"@helium/helium-sub-daos-sdk": "workspace:^",
"@helium/idls": "workspace:^",
"@helium/lazy-distributor-sdk": "workspace:^",
"@helium/mini-fanout-sdk": "workspace:^",
"@helium/mobile-entity-manager-sdk": "workspace:^",
"@helium/no-emit-sdk": "workspace:^",
"@helium/spl-utils": "workspace:^",
"@helium/sus": "workspace:^",
"@helium/tuktuk-dca-sdk": "workspace:^",
"@helium/voter-stake-registry-sdk": "workspace:^",
"@helium/welcome-pack-sdk": "workspace:^",
"@solana/spl-governance": "^0.3.17",
"@types/bn.js": "^5.2.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"long": "^5.2.1",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"shx": "^0.3.4",
"ts-mocha": "^10.0.0",
"ts-node": "^10.4.0",
"turbo": "^2.3.0",
"tweetnacl": "^1.0.3",
"typescript": "^5.2.2"
},
"pnpm": {
"neverBuiltDependencies": [
"@mongodb-js/zstd",
"grpc-tools",
"sqlite3"
],
"overrides": {
"cipher-base": "^1.0.6",
"sha.js": "^2.4.12",
"@helium/crypto": "^4.14.2",
"@types/bn.js": "^5.2.0",
"@solana/web3.js": "1.98.2"
}
},
"packageManager": "pnpm@9.15.4"
}