forked from mirshko/next-web3-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "next-web3-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "yarn compile-contract-types && next dev",
"build": "yarn compile-contract-types && next build",
"start": "yarn compile-contract-types && next start",
"export": "next build && next export -o build/",
"react-build": "react-scripts build",
"react-start": "react-scripts start",
"lint": "yarn compile-contract-types && next lint",
"compile-contract-types": "typechain --target ethers-v5 --out-dir './contracts/types' './contracts/*.json'"
},
"dependencies": {
"@ant-design/static-style-extract": "^1.0.1",
"@metamask/detect-provider": "^2.0.0",
"@metamask/onboarding": "^1.0.1",
"@next/font": "^13.1.1",
"@web3-onboard/core": "^2.16.0",
"@web3-onboard/injected-wallets": "^2.8.3",
"@web3-onboard/react": "^2.7.2",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"antd": "^5.1.2",
"axios": "^1.3.1",
"black-scholes": "^1.1.0",
"chart.js": "^4.2.1",
"chartjs-plugin-annotation": "^2.1.2",
"html2canvas": "^1.4.1",
"lightweight-charts": "^3.8.0",
"logrocket": "^3.0.1",
"logrocket-react": "^5.0.1",
"next": "^13.3.0",
"next-password-protect": "^1.8.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.2.0",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"eslint": "8.30.0",
"eslint-config-next": "13.0.7",
"ethers": "^5.7.2",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
}
}