forked from lobster-dao/lobster-nft-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.15 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
{
"name": "lobsters-nft",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn run compile && yarn run typechain",
"clean": "hardhat clean",
"compile": "npm run clean && COMPILE_TARGET=release hardhat compile",
"coverage": "hardhat coverage --show-stack-traces --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.js\"",
"lint:sol": "solhint --config ./.solhint.json \"contracts/**/*.sol\"",
"lint:js": "eslint --config .eslintrc.json --ignore-path ./.eslintignore --ext .js .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:sol": "prettier --config .prettierrc --write \"contracts/**/*.sol\"",
"test": "mocha --timeout 50000",
"test-ganache": "hardhat test --network ganache"
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^1.3.0",
"@openzeppelin/truffle-upgrades": "^1.2.1",
"@openzeppelin/upgrades": "^2.8.0",
"@truffle/hdwallet-provider": "^1.1.1",
"bignumber.js": "^9.0.1",
"crypto-js": "^3.1.9-1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"ethereumjs-util": "^7.1.0",
"ethers": "5.4.7",
"lodash": "^4.17.20",
"merkletreejs": "^0.2.24",
"p-iteration": "^1.1.8",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"web3": "1.6.0",
"web3-utils": "1.6.0"
},
"devDependencies": {
"@ethersproject/abstract-signer": "^5.0.1",
"@ethersproject/bignumber": "^5.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/contract": "^4.2.26",
"hardhat": "2.6.5",
"hardhat-contract-sizer": "^2.0.0",
"hardhat-gas-reporter": "^1.0.1",
"mocha": "^8.0.1",
"solidity-coverage": "^0.7.11",
"typechain": "^4.0.0"
}
}