-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 4.06 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "firebase-chat-app",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"emulators": "firebase emulators:start",
"deploy:hosting": "vite build && firebase deploy",
"restart-emulators": "npx kill-port --port 8000,9099,5001,8080 && yarn emulators",
"hardhat": "npx hardhat node",
"hardhat:compile": "npx hardhat compile",
"hardhat:deploy": "npx hardhat run scripts/deploy.js --network localhost",
"hardhat:deploy:upgrade": "npx hardhat run scripts/deploy_upgradeable_box.js --network localhost",
"hardhat:console": "npx hardhat console --network localhost",
"hardhat:index": "npx hardhat run ./scripts/index.js --network localhost",
"hardhat:test": "npx hardhat test",
"hardhat:clg:goerli": "npx hardhat console --network goerli",
"hardhat:dp:goerli": "npx hardhat run scripts/deploy.js --network goerli",
"hardhat:verify": "npx hardhat verify DEPLOYED_CONTRACT_ADDRESS \"Constructor argument 1\" --network goerli",
"docker:build": "docker build -t chintrinh/react-docker .",
"docker:run": "docker run -d -p 3000:80 chintrinh/react-docker",
"docker:kill": "docker kill",
"docker:rm": "docker run --rm -it chintrinh/react-docker",
"docker:restart": "docker run -p 80:80 --restart=always nginx",
"docker:stop": "docker stop $(docker ps -a -q)",
"docker:delete": "docker rm $(docker ps -a -q) && docker rmi $(docker images -a -q)",
"docker:push": "docker push chintrinh/react-docker:latest",
"deployment:delete": "kubectl delete deploy",
"services:delete": "kubectl delete service",
"apply": "kubectl apply -f ./k8s/deployment.yaml ",
"minikube:start": "minikube start --driver=docker --ports=30001:30001",
"minikube:service": "minikube service minikube-react-app",
"minikube:url": "minikube service minikube-react-app --url"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "0.1.1",
"@metamask/logo": "3.1.1",
"@openzeppelin/contracts": "4.7.1",
"@openzeppelin/contracts-upgradeable": "4.7.1",
"@thirdweb-dev/contracts": "3.0.3",
"@thirdweb-dev/react": "2.4.1",
"@thirdweb-dev/sdk": "2.3.8",
"@uiw/react-md-editor": "3.14.1",
"antd": "4.21.5",
"axios": "0.27.2",
"buffer": "6.0.3",
"clsx": "1.2.1",
"dotenv": "16.0.1",
"firebase": "9.8.2",
"i18next": "21.8.13",
"ipfs-http-client": "57.0.3",
"lodash": "4.17.21",
"moment": "2.29.3",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-firebase-hooks": "5.0.3",
"react-helmet": "6.1.0",
"react-i18next": "11.18.0",
"react-icons": "4.4.0",
"react-infinite-scroll-component": "6.1.0",
"react-markdown": "8.0.3",
"react-router-dom": "6.3.0",
"remark-gfm": "3.0.1",
"semver": "7.3.7",
"vite-plugin-svgr": "2.2.0",
"web3modal": "1.9.8"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.9.2",
"@emotion/react": "11.9.3",
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.6",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"less": "^4.1.3",
"prettier": "2.6.2",
"rollup-plugin-polyfill-node": "^0.10.2",
"solidity-coverage": "^0.7.21",
"typechain": "^8.1.0",
"vite": "^2.9.9",
"vite-plugin-imp": "^2.2.0",
"web3": "^1.7.4"
}
}