-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.74 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
{
"name": "bufalo-nft-skulls",
"version": "2.0.0",
"description": "Codebase for Bufalo's NFT collection \"BOTV Skulls\"",
"directories": {
"test": "test"
},
"engines": {
"node": ">=17.5.0"
},
"scripts": {
"analyze": "slither contracts --solc-remaps \"@=node_modules/@ erc721a=node_modules/erc721a\"",
"coverage": "npx hardhat coverage",
"deploy-api": "node scripts/envConfig.js && wrangler publish",
"deploy-mumbai": "npx hardhat run scripts/deployBUFAMUSIC.js --network mumbai && npm run deploy-api",
"deploy-polygon": "npx hardhat run scripts/deployBUFAMUSIC.js --network polygon && npm run deploy-api",
"dev-api": "wrangler dev",
"metadata": "rm -f data/results/metadata/BOTV/*.car && node scripts/tokenMetadata.js && npx ipfs-car --pack data/results/metadata/BOTV/tokens --output data/results/metadata/BOTV/botvmetadata.car && npm run deploy-api",
"snapshot": "node scripts/privateSaleLists.js && node scripts/merkleLists.js && npm run deploy-api",
"sizes": "npx hardhat size-contracts",
"test-api": "jest api/*.test.js",
"test-contracts": "npx hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antho31/bufalo-nft-skulls"
},
"keywords": [],
"author": "",
"license": "MIT",
"homepage": "https://github.com/antho31/bufalo-nft-skulls",
"dependencies": {
"@datocms/cma-client-node": "^1.3.1",
"@json2csv/plainjs": "^6.1.2",
"@thirdweb-dev/sdk": "^3.9.5",
"alchemy-sdk": "^2.4.3",
"dotenv": "^16.0.3",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.9",
"node-fetch": "^3.3.1",
"openrarityjs": "^1.1.0",
"puppeteer": "^19.7.5",
"superagent": "^8.0.9",
"superagent-throttle": "^1.0.1",
"web3": "^1.8.2"
},
"devDependencies": {
"@chainlink/contracts": "^0.5.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.6",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@opengsn/contracts": "^3.0.0-beta.6",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.3.7",
"erc721a": "^4.2.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.2",
"itty-router": "^3.0.11",
"jest": "^28.1.3",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"solidity-coverage": "^0.7.22",
"wrangler": "^2.11.1"
}
}