forked from tornadocash/tornado-governance
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 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
{
"name": "romulus-kit",
"version": "1.0.3",
"description": "",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "./test.sh",
"bench": "./bench.sh",
"build": "yarn compile:contracts && yarn compile:ts",
"deploy": "node deploy/deploy.js",
"clean": "rm -rf ./build ./dist ./types",
"compile:ts": "yarn tsc -b",
"compile:contracts": "yarn truffle compile && yarn typechain --target=truffle-v5 'build/contracts/*.json' && yarn ts-node ./src/codegen.ts",
"prepublishOnly": "yarn clean && yarn build"
},
"author": "Poof.cash team <brian@poof.cash>",
"license": "MIT",
"dependencies": {
"@celo/contractkit": "^1.2.0",
"@nomspace/nomspace": "^1.0.3",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/upgrades-core": "^1.0.1",
"@poofcash/poof-token": "^1.0.6",
"@types/ethereumjs-abi": "^0.6.3",
"bip39": "^3.0.4",
"solparse": "^2.2.8",
"ts-node": "^10.0.0",
"web3": "^1.3.6",
"web3-utils": "^1.3.6"
},
"devDependencies": {
"@celo/typechain-target-web3-v1-celo": "^0.2.0",
"@openzeppelin/truffle-upgrades": "^1.0.2",
"@ticket721/e712": "^0.4.1",
"@typechain/truffle-v5": "^5.0.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"babel-eslint": "^10.1.0",
"bignumber.js": "^9.0.0",
"bn-chai": "^1.0.1",
"bn.js": "^5.1.3",
"celo-devchain": "^3.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.8.1",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^5.0.14",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.10",
"truffle": "^5.1.43",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"typechain": "^5.0.0",
"typescript": "^4.0.5"
}
}