forked from DXgovernance/dxdao-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@dx-gov-test/dxdao-contracts",
"version": "3.0.3",
"description": "DXdao smart contracts",
"files": [
"contracts/",
"docs/",
"build/contracts/",
"migrations/",
"test/",
"truffle.js",
"tsconfig.json",
"types/",
"artifacts/",
"hardhat.config.js"
],
"scripts": {
"clean": "rm -rf artifacts cache contracts/hardhat-dependency-compiler/ bytecodes types",
"test": "hardhat test",
"coverage": "OVERRIDE_GAS_LIMIT=0xfffffffffff OVERRIDE_GAS_PRICE=1 yarn hardhat coverage",
"compile": "hardhat compile",
"setup": "hardhat typechain",
"deploy": "node scripts/deploy.js",
"docify": "yarn run clean && hardhat docgen && node ./scripts/build-docs-summary.js",
"solidity-linter": "./scripts/solhint.sh",
"solidity-contract-size": "yarn hardhat size-contracts",
"lint": "eslint .",
"lint --fix": "eslint --fix .",
"format": "prettier --write \"test/**/*.{js,jsx,ts,tsx,json,md}\" \"contracts/**/*.sol\"",
"format-check": "prettier --check \"test/**/*.{js,jsx,ts,tsx,json,md}\" \"contracts/**/*.sol\"",
"pre-commit": "lint-staged",
"prepublishOnly": "yarn compile"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/eslint-parser": "^7.17.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contract-loader": "^0.6.1",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@truffle/contract": "^4.2.21",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^5.0.0",
"cross-conf-env": "^1.1.2",
"default-options": "^1.0.0",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-abi": "^0.6.5",
"ethers": "^5.1.0",
"hardhat": "^2.12.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-deploy": "^0.11.18",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"pm2": "^2.9.3",
"promisify": "^0.0.3",
"pug": "^2.0.0-rc.4",
"rimraf": "^2.6.2",
"run-with-ganache": "^0.1.1",
"solhint": "^3.3.5",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"truffle": "^5.1.28",
"truffle-hdwallet-provider": "^1.0.17",
"typechain": "7.0.0",
"uint32": "^0.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DXgovernance/dxdao-contracts.git"
},
"engines": {
"node": ">=10.16.3"
},
"license": "AGPL-3.0",
"dependencies": {
"@maticnetwork/eth-decoder": "^0.0.4",
"@openzeppelin/contracts": "4.4.0",
"@openzeppelin/contracts-upgradeable": "4.4.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^1.4.0",
"arb-ethers-web3-bridge": "^0.7.3",
"chai": "^4.2.0",
"eip-712": "^1.0.0",
"ipfs-core": "^0.14.1",
"math": "0.0.3",
"moment": "^2.27.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-docgen": "^0.6.0-beta.30",
"truffle-flattener": "^1.4.4",
"web3": "^1.8.0"
},
"peerDependencies": {
"ganache-cli": "^6.4.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,sol}": [
"yarn format",
"yarn solidity-linter"
]
},
"bugs": {
"url": "https://github.com/DXgovernance/dxdao-contracts/issues"
},
"homepage": "https://github.com/DXgovernance/dxdao-contracts#readme",
"directories": {
"doc": "docs",
"test": "test",
"contracts": "contracts",
"artifacts": "artifacts"
},
"keywords": [
"solidity",
"governance"
],
"author": "DxDao Governance Team"
}