-
Notifications
You must be signed in to change notification settings - Fork 0
/
package copy.json
66 lines (66 loc) · 2.34 KB
/
package copy.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
{
"name": "scaleswap",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@openzeppelin/contracts": "4.0.0",
"ethers-eip712": "^0.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/upgrades": "^2.8.0",
"@typechain/ethers-v4": "^1.0.0",
"@typechain/ethers-v5": "^4.0.0",
"@typechain/truffle-v4": "^2.0.2",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"ethereum-waffle": "^3.1.2",
"ethers": "^5.0.19",
"hardhat": "^2.2.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-deploy": "^0.7.5",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"solc": "0.8.3",
"solhint": "^3.3.4",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-morph": "^10.0.2",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.4",
"truffle": "^5.1.50",
"truffle-flattener": "^1.5.0"
},
"scripts": {
"build": "npm run compile && npx hardhat typechain",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage",
"rebuild": "npm run clean && npm run build && npm run test",
"deploy_token": "npx hardhat run scripts/1_deploy_token.ts --network",
"deploy_factory": "npx hardhat run scripts/2_deploy_factory.ts --network",
"lint": "eslint ./ --fix",
"lint-quick": "pretty-quick --staged --pattern \"**/*.*(ts|tsx)\"",
"flatten": "truffle-flattener ./contracts/tokensale/ScaleSwapFactory.sol --output ScaleSwapFactory_flat.sol",
"flatten_token": "truffle-flattener ./contracts/ScaleSwapToken.sol --output ScaleSwapToken_flat.sol"
},
"author": "Evgeniy Bezuglyi ([email protected])"
}