-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.23 KB
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
{
"name": "weswap-exchange",
"description": "WeSwapExchange",
"license": "ISC",
"dependencies": {
"@eth-optimism/plugins": "^1.0.0-alpha.3",
"@openzeppelin/contracts": "^3.1.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"qs": "^6.10.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.6",
"chai": "^4.2.0",
"ethers": "^5.3.0",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.0",
"prettier": "^2.7.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.6.12",
"truffle": "^5.1.37",
"truffle-flattener": "^1.4.4",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"scripts": {
"compile": "truffle compile",
"flattern-exchange": "truffle-flattener ./contracts/WeSwapExchange.sol > WeSwapExchange.full.sol",
"flattern": "npm run flattern-proxy-admin && npm run flattern-proxy && npm run flattern-exchange",
"prettier": "./node_modules/.bin/prettier --write contracts/**/*.sol"
}
}