-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.18 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
{
"name": "balancer-controller-v2",
"description": "Solidity contracts implementing a Balancer controller",
"version": "1.0.0",
"author": {
"name": "Darren Oliveiro-Priestnall",
"url": "https://github.com/TheNewAutonomy"
},
"devDependencies": {
"@balancer-labs/v2-deployments": "^3.2.0",
"@balancer-labs/v2-interfaces": "^0.4.0",
"@balancer-labs/v2-pool-utils": "^4.0.0",
"@balancer-labs/v2-pool-weighted": "^2.0.1",
"@balancer-labs/v2-solidity-utils": "^4.0.0",
"@balancer-labs/v2-vault": "^3.0.1",
"@celo/contractkit": "^4.0.0",
"@chainlink/contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.2",
"@openzeppelin/contracts": "3.4.2-solc-0.7",
"@openzeppelin/contracts-upgradeable": "3.4.2-solc-0.7",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.9.0",
"fs-extra": "^11.2.0",
"hardhat": "^2.19.4",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.9",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"prettier-plugin-solidity": "^1.2.0",
"rimraf": "^5.0.5",
"solhint": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.6",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"files": [
"contracts"
],
"keywords": [
"blockchain",
"ethers",
"ethereum",
"hardhat",
"smart-contracts",
"solidity",
"template",
"typescript",
"typechain"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf ./artifacts ./cache ./coverage ./types ./coverage.json && npm run typechain",
"compile": "yarn hardhat compile",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\" && npm run typechain",
"deploy:contracts": "hardhat deploy",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:check",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"postcompile": "npm run typechain",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"task:deployLock": "hardhat task:deployLock",
"task:withdraw": "hardhat task:withdraw",
"test": "hardhat test",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain"
},
"packageManager": "[email protected]"
}