-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 2.45 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": "chicago-ethereum-qf-contracts",
"version": "0.0.2",
"description": "Solidity code for the Chicago Ethereum Meetup's quadratic funding / CLR pilot",
"main": "index.ts",
"scripts": {
"build": "npm run compile && npm run typechain",
"compile": "npx buidler compile",
"typechain": "npx buidler compile && typechain --outDir typechain --target ethers 'artifacts/*.json'",
"test": "npx buidler test",
"lint:prettier": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' 'contracts/**/*.sol'",
"lint:solhint": "npx buidler check",
"lint": "npm run lint:prettier && npm run lint:solhint",
"deploy:rinkeby": "npx buidler run --network rinkeby scripts/deploy.ts",
"verify:rinkeby:eth-chicago-qf": "npx buidler verify-contract --contract-name EthChicagoQF --address 0x11528D3E35C9C8Fe59358c390f088Cf4b66e4C9e",
"verify:rinkeby:cem-token": "npx buidler verify-contract --contract-name CEMToken --address 0x11528D3E35C9C8Fe59358c390f088Cf4b66e4C9e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chicago-ethereum/quadratic-funding.git"
},
"keywords": [
"qf",
"clr",
"quadratic",
"funding",
"constrained",
"liberal",
"radicalism",
"gitcoin",
"grants"
],
"author": "Paul Cowgill",
"license": "MIT",
"bugs": {
"url": "https://github.com/chicago-ethereum/quadratic-funding/issues"
},
"homepage": "https://github.com/chicago-ethereum/quadratic-funding#readme",
"devDependencies": {
"@nomiclabs/buidler": "^1.1.2",
"@nomiclabs/buidler-ethers": "^1.1.2",
"@nomiclabs/buidler-etherscan": "^1.1.2",
"@nomiclabs/buidler-solhint": "^1.1.2",
"@nomiclabs/buidler-waffle": "^1.1.2",
"@openzeppelin/contracts": "^2.5.0",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"chai": "^4.2.0",
"dotenv-flow": "^3.1.0",
"ethereum-waffle": "^2.3.2",
"ethers": "^4.0.44",
"husky": "^4.2.1",
"npm-check-updates": "^4.0.1",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-alpha.37",
"solhint-plugin-prettier": "0.0.4",
"ts-node": "^8.6.2",
"typechain": "^1.0.4",
"typechain-target-ethers": "^1.0.3",
"typescript": "^3.7.5"
},
"dependencies": {}
}