-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
64 lines (64 loc) · 2.59 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
{
"name": "radicle-contracts",
"version": "0.1.0",
"license": "GPL-3.0-only",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"dependencies": {
"@ethersproject/abi": "^5.1.2",
"@ethersproject/bytes": "^5.1.0",
"@ethersproject/providers": "^5.1.2",
"ethers": "^5.1.4"
},
"devDependencies": {
"@ensdomains/ens": "^0.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1-solc-0.7",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/web3-v1": "^3.0.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/readline-sync": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"chai": "^4.3.3",
"eslint": "^7.21.0",
"fast-glob": "^3.2.7",
"hardhat": "^2.1.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"readline-sync": "^1.4.10",
"solhint": "^3.3.3",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.2.3",
"web3": "^1.3.5"
},
"scripts": {
"build": "hardhat compile && tsc && ts-node scripts/copy-contract-declaration-files.ts",
"deploy:claims": "ts-node -e 'require(\"./src/deploy-to-network.ts\").claims();'",
"deploy:claimsV2": "ts-node -e 'require(\"./src/deploy-to-network.ts\").claimsV2();'",
"deploy:ethFundingPool": "ts-node -e 'require(\"./src/deploy-to-network.ts\").ethFundingPool();'",
"deploy:erc20FundingPool": "ts-node -e 'require(\"./src/deploy-to-network.ts\").erc20FundingPool();'",
"deploy:daiFundingPool": "ts-node -e 'require(\"./src/deploy-to-network.ts\").daiFundingPool();'",
"deploy:testEns": "ts-node -e 'require(\"./src/deploy-to-network.ts\").testEns();'",
"deploy:phase0": "ts-node -e 'require(\"./src/deploy-to-network.ts\").phase0();'",
"deploy:vestingTokens": "ts-node -e 'require(\"./src/deploy-to-network.ts\").vestingTokens();'",
"deploy:playground": "ts-node -e 'require(\"./src/deploy-to-network.ts\").playground();'",
"prepare": "yarn prepack",
"prepack": "yarn build",
"test": "hardhat test",
"lint": "yarn run lint:prettier:check && yarn run lint:solhint && yarn run lint:eslint",
"lint:solhint": "solhint --max-warnings=0 $(git ls-files | grep -E '\\.sol$')",
"lint:eslint": "eslint . --max-warnings=0",
"lint:prettier": "prettier $(git ls-files | grep -E '\\.(sol|ts|js)$')",
"lint:prettier:check": "yarn lint:prettier --check",
"lint:prettier:write": "yarn lint:prettier --write"
},
"files": [
"src/**",
"build/**",
"contract-bindings/**"
]
}