forked from fleekxyz/non-fungible-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.16 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
{
"name": "@fleekxyz/nfa-contracts",
"version": "0.0.1",
"description": "",
"private": "false",
"scripts": {
"test": "yarn test:hardhat && yarn test:foundry",
"test:foundry": "forge test -vvv --fork-url mainnet --fork-block-number 16876149",
"test:hardhat": "hardhat test",
"format": "prettier --write \"./**/*.{js,json,sol,ts}\"",
"node:hardhat": "hardhat node",
"deploy:hardhat": "hardhat deploy --network hardhat",
"deploy:mumbai": "hardhat deploy --network mumbai",
"deploy:sepolia": "hardhat deploy --network sepolia",
"deploy:goerli": "hardhat deploy --network goerli",
"compile": "hardhat compile",
"verify:mumbai": "npx hardhat run ./scripts/verify.js --network mumbai",
"verify:goerli": "npx hardhat run ./scripts/verify.js --network goerli",
"verify:sepolia": "npx hardhat run ./scripts/verify.js --network sepolia"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fleekxyz/non-fungible-apps.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fleekxyz/non-fungible-apps/issues"
},
"homepage": "https://github.com/fleekxyz/non-fungible-apps#readme",
"devDependencies": {
"@ensdomains/ens-contracts": "^0.0.20",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.6",
"colorthief": "^2.3.2",
"dotenv": "^16.0.2",
"ethers": "^5.7.2",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"lint-staged": "^13.0.4",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0",
"sharp": "^0.31.3",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"web3": "^1.8.1"
}
}