-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "indigidao-hackerearth-web3athon",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:ChromaPDX/liquidCollectionXChroma.git",
"author": "adam wong <[email protected]>",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.8.0-rc.1",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@thirdweb-dev/contracts": "3.1.8",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.2.9",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"ethers": "5.7.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"path": "^0.12.7",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-iframe": "^1.8.0",
"react-use-promise": "^0.5.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"thirdweb": "^0.7.16",
"truffle": "^5.5.30",
"ts-loader": "^9.3.1",
"typescript": "4.8.2",
"url": "^0.11.0",
"use-sync-external-store": "^1.2.0",
"web3-eth-contract": "^1.7.5",
"web3modal": "^1.9.9",
"webpack": "^5.74.0"
},
"devDependencies": {
"hardhat": "^2.10.1",
"webpack-cli": "^4.10.0"
},
"scripts": {
"clean:js": "rm -rf node_modules",
"clean:sol": "rm -rf build",
"nuke": "yarn clean:js && yarn clean:sol && yarn install",
"web2:dev": "yarn webpack serve",
"web2:build": "yarn webpack",
"web3:test": "truffle test",
"web3:deploy:dev": "truffle migrate --reset --network development",
"web3:dashboard:dev": "truffle dashboard --network development",
"web3:build": "npx thirdweb@latest detect",
"web3:deploy": "npx thirdweb@latest deploy"
},
"resolutions": {
"zustand": "^3.6.9"
}
}