forked from NexusMutual/smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.04 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
{
"name": "nexusmutual",
"version": "2.1.0",
"description": "NexusMutual smart contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/NexusMutual/smart-contracts.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"insurance-alternative"
],
"author": "nexusmutual.io",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/NexusMutual/smart-contracts/issues"
},
"homepage": "https://github.com/NexusMutual/smart-contracts",
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@openzeppelin/contracts": "^2.5.1",
"@openzeppelin/contracts-v4": "npm:@openzeppelin/contracts@^4.7.3",
"dotenv": "^8.6.0",
"ethereum-cryptography": "^1.0.1",
"ethereumjs-util": "^7.0.1",
"ethers": "^5.7.1",
"hardhat-ignore-warnings": "^0.2.8",
"merkletreejs": "^0.2.32",
"node-fetch": "^2.6.7",
"solmate": "^6.6.1",
"workerpool": "^6.2.0"
},
"devDependencies": {
"@cowprotocol/contracts": "^1.3.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@tenderly/hardhat-tenderly": "^1.5.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.5",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"csv-parse": "^5.3.4",
"decimal.js": "^10.4.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^5.0.0",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-tracer": "^2.1.2",
"ipfs-http-client": "^47.0.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"solidity-coverage": "^0.7.22",
"typechain": "^8.1.0"
},
"scripts": {
"compile": "hardhat compile",
"lint": "eslint --max-warnings 0 .",
"dev": "nodemon --ext js,sol -x 'hardhat test test/index.js --show-stack-traces'",
"dev-integration": "nodemon --ext js,sol -x 'hardhat test test/integration/index.js --show-stack-traces'",
"dev-unit": "nodemon --ext js,sol -x 'hardhat test test/unit/index.js --show-stack-traces'",
"dev-ui": "hardhat run scripts/local-deploy.js",
"coverage": "NODE_OPTIONS='--max-old-space-size=8192' hardhat coverage --testfiles 'test/{unit,integration}/**/*.js'",
"test": "hardhat test test/unit/**/*.js test/integration/**/*.js test/layout/*.js",
"test-integration": "hardhat test test/integration/**/*.js",
"test-unit": "hardhat test test/unit/**/*.js",
"test-layout": "hardhat test test/layout/*.js",
"test-fork": "TEST_ENV_FORK=http://localhost:8545 hardhat test test/fork/index.js",
"deploy": "hardhat run scripts/deploy/deploy.js",
"deploy-local": "hardhat run scripts/deploy/start.js",
"typechain": "hardhat typechain"
}
}