forked from DXgovernance/dxdao-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.37 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
{
"name": "dxdao-contracts",
"version": "1.0.0",
"description": "DXdao smart contracts",
"files": [
"contracts/",
"docs/",
"build/contracts/",
"migrations/",
"test/",
"truffle.js",
"tsconfig.json"
],
"scripts": {
"test": "npx hardhat test",
"coverage": "./scripts/coverage.sh",
"compile": "rm -rf artifacts cache contracts/hardhat-dependency-compiler && npx hardhat compile",
"deploy": "node scripts/deploy.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"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/eslint-parser": "^7.17.0",
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contract-loader": "^0.6.1",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@truffle/contract": "^4.2.21",
"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.6.8",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-dependency-compiler": "^1.1.1",
"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.7.16",
"truffle": "^5.1.28",
"truffle-hdwallet-provider": "^1.0.17",
"uint32": "^0.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/augustol/arc.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",
"ipfs-core": "^0.14.1",
"math": "0.0.3",
"moment": "^2.27.0",
"openzeppelin-solidity": "2.4.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"truffle-flattener": "^1.4.4"
},
"peerDependencies": {
"ganache-cli": "^6.4.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,sol}": [
"yarn format",
"yarn solidity-linter"
]
}
}