-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.86 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": "@dorgtech/dorg-token-contracts",
"version": "0.0.1",
"description": "Smart contracts for the dOrg token development flow",
"main": "index.ts",
"scripts": {
"clean": "rimraf artifacts && rimraf cache && rimraf types",
"build": "yarn clean && npx buidler compile && npx buidler typechain",
"test": "npx buidler test",
"coverage": "yarn build && npx buidler coverage --temp artifacts --network coverage",
"deploy:rinkeby": "NETWORK=rinkeby npx buidler run --network rinkeby scripts/deploy.ts",
"deploy:mainnet": "NETWORK=mainnet npx buidler run --network mainnet scripts/deploy.ts",
"deploy:xdai": "NETWORK=xdai npx buidler run --network xdai scripts/deploy.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dOrgTech/token-redemption.git"
},
"author": "dOrg",
"license": "MIT",
"bugs": {
"url": "https://github.com/dOrgTech/token-redemption/issues"
},
"homepage": "https://github.com/dOrgTech/token-redemption#readme",
"devDependencies": {
"@nomiclabs/buidler": "1.3.4",
"@nomiclabs/buidler-ethers": "1.3.3",
"@nomiclabs/buidler-etherscan": "1.3.3",
"@nomiclabs/buidler-solhint": "1.3.3",
"@nomiclabs/buidler-waffle": "1.3.3",
"@openzeppelin/contracts-ethereum-package": "2.5.0",
"@openzeppelin/upgrades": "2.8.0",
"@typechain/ethers-v4": "1.0.0",
"@typechain/truffle-v4": "2.0.2",
"@typechain/truffle-v5": "2.0.2",
"@typechain/web3-v1": "1.0.0",
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"@types/node": "14.0.5",
"buidler-typechain": "0.1.1",
"chai": "4.2.0",
"codecov": "3.7.0",
"dotenv": "8.2.0",
"ethereum-waffle": "2.5.1",
"ethers": "4.0.47",
"solidity-coverage": "0.7.5",
"ts-generator": "0.0.8",
"ts-node": "8.10.1",
"typechain": "2.0.0",
"rimraf": "3.0.2",
"typescript": "3.9.3"
}
}