forked from ChromaPDX/liquidCollectionXChroma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.81 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
85
86
87
88
89
90
91
92
93
{
"name": "liquidCollectionXChroma",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:ChromaPDX/liquidCollectionXChroma.git",
"author": "adam wong <[email protected]>",
"license": "MIT",
"dependencies": {
"@coinbase/wallet-sdk": "^3.5.3",
"@koa/router": "^12.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@rainbow-me/rainbowkit": "0.7.3",
"@reduxjs/toolkit": "^1.8.6",
"@tanstack/query-core": "4.12.0",
"@tanstack/react-query": "4.13.0",
"@tanstack/react-query-devtools": "^4.13.0",
"@thirdweb-dev/contracts": "^3.2.5",
"@thirdweb-dev/react": "^3.5.1",
"@thirdweb-dev/sdk": "^3.5.1",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.1",
"csv": "^6.2.1",
"csv-generate": "^4.2.0",
"csvtojson": "^2.0.10",
"erc721a-upgradeable": "^4.2.2",
"ethers": "^5.7.2",
"files-from-path": "^0.2.6",
"forge-std": "^1.1.2",
"fs": "^0.0.1-security",
"gapi": "^0.0.3",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"ipfs-http-client": "59.0.0",
"luxon": "^3.1.0",
"nft.storage": "^7.0.0",
"openzeppelin-contracts": "^4.0.0",
"operator-filter-registry": "^1.2.1",
"os-browserify": "^0.3.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"solc": "^0.8.17",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^3.3.1",
"thirdweb": "^0.7.10",
"ts-loader": "^9.3.1",
"typescript": "4.8.2",
"url": "^0.11.0",
"wagmi": "^0.8.5",
"web3": "^1.8.0",
"webpack": "^5.74.0",
"webpack-dev-server": "^4.11.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.5",
"hardhat": "^2.10.1",
"webpack-cli": "^4.10.0"
},
"scripts": {
"dev:redeem": "yarn webpack serve -c redeem.webpack.config.js --env ",
"nft:build": "npx thirdweb@latest detect",
"nft:deploy": "npx thirdweb@latest deploy",
"nft:release": "npx thirdweb@latest release",
"web3:build": "npx thirdweb@latest detect",
"web3:deploy": "npx thirdweb@latest deploy",
"web3:test": "npx hardhat test",
"solc:compile": "solc ./contracts/LiquidCollections.sol",
"allowlistproof": "node ./src/allowlistproof.js",
"app:build": "yarn webpack --mode=production",
"app:dev": "yarn webpack serve",
"anim:dev": "yarn webpack serve -c animation.webpack.js --mode=development",
"anim:build": "yarn webpack -c animation.webpack.js --mode=production",
"smoketest": "python3 -m http.server -d dist 8000",
"solt": "~/.local/bin/solt write contracts --npm",
"web2:build": "yarn app:build && yarn anim:build",
"build-run:server": "nodemon ./dist/server.bundle.js; yarn webpack --watch -c server.webpack.config.js",
"build:NftFactory": "yarn webpack -c nfts.webpack.config.js",
"ipfs:upload": "yarn webpack -c ipfsUploader.webpack.config.js && node ./dist/ipfsUploader.bundle.js",
"lazyminter": "yarn webpack -c lazyminter.webpack.config.js && node ./dist/lazyminter.bundle.js",
"verify:etherscan": "npx hardhat verify --constructor-args arguments.js --network mainnet 0xA983d04C0FcA6AB46452fe6281a1fcD7f982E3F5 "
}
}