-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "metadao-hermes",
"version": "0.0.1",
"description": "Proofs of concept for accessing MetaDAO",
"main": "./src/swap.ts",
"repository": "[email protected]:metaDAOproject/hermes.git",
"author": "Kollan House <[email protected]>",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"swap": "bun run src/swap.ts",
"create-dao": "bun run src/createDao.ts",
"create-proposal": "bun run src/createProposal.ts",
"finalize-proposal": "bun run src/finalizeProposals.ts",
"crank": "bun run src/crank.ts"
},
"lint-staged": {
"*.ts": "prettier -w \"**/*\" --ignore-unknown --cache"
},
"dependencies": {
"@coral-xyz/anchor": "0.28.1-beta.2",
"@metadaoproject/futarchy": "0.4.0-alpha.33",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-uploader-bundlr": "^0.9.2",
"@metadaoproject/futarchy-sdk": "4.0.0-alpha.36",
"@solana/spl-memo": "^0.2.5",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.78.0",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.9.0",
"@types/node-fetch": "^2.6.9",
"@types/websocket": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"rpc-websockets": "^7.5.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"tsx": "^4.7.2",
"typescript": "^5.1.6"
}
}