-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 976 Bytes
/
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
{
"name": "xrpl-commons-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"deploy-token": "hardhat run --network evmSidechain scripts/deploy-token.ts",
"deploy-voting": "hardhat run --network evmSidechain scripts/deploy-voting.ts",
"buy": "hardhat run --network evmSidechain scripts/buy.ts",
"create-proposal": "hardhat run --network evmSidechain scripts/create-proposal.ts",
"vote-proposal": "hardhat run --network evmSidechain scripts/vote-proposal.ts",
"flatten": "hardhat flatten > Flattened.sol",
"send-mainchain": "ts-node ./scripts/send-mainchain.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^4.0.0",
"hardhat": "^2.22.2",
"xchain-sdk": "^1.2.5",
"xrpl": "3.0.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}