forked from TurnUpTeam/turnup-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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
{
"name": "turnup-contracts",
"version": "0.2.0",
"description": "The TurnUp protocol",
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"test": "NODE_ENV=test npx hardhat test",
"test:gas": "NODE_ENV=test GAS_REPORT=yes npx hardhat test",
"compile": "NODE_ENV=test npx hardhat compile",
"format": "npx prettier --write .",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "prettier --write 'contracts/**/*.sol' && npx prettier --write ./test/**/*.js ./**/*.js",
"lint:sol": "solhint 'contracts/**/*.sol' ",
"coverage": "rimraf coverage coverage.json && NODE_ENV=test npx hardhat coverage",
"prepare": "husky install",
"size": "NODE_ENV=test npx hardhat size-contracts",
"postinstall": "./post-install.sh"
},
"devDependencies": {
"@ethersproject/contracts": "^5.7.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.24.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@secrez/cryptoenv": "^0.2.4",
"bn.js": "^5.2.1",
"case": "^1.6.3",
"chai": "^4.3.10",
"dotenv": "^16.1.3",
"eth-deploy-utils": "1.0.0-beta.7",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.4",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"fs-extra": "^11.1.1",
"hardhat": "^2.14.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.0",
"keccak256": "^1.0.6",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"pretty-quick": "^3.1.3",
"require-or-mock": "^0.2.1",
"rimraf": "^5.0.0",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.js": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@ndujalabs/erc721lockable": "^0.13.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@pythnetwork/entropy-sdk-solidity": "^1.5.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"dn404": "^0.0.16",
"solady": "^0.0.194"
}
}