forked from michaelg9/invetht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.36 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
{
"name": "inveth",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/michaelg9/invetht"
},
"homepage": ".",
"private": true,
"type": "module",
"dependencies": {
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.6.5",
"@chakra-ui/theme-tools": "^1.1.9",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@walletconnect/client": "^1.7.8",
"@walletconnect/qrcode-modal": "^1.7.8",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.13",
"@web3-react/walletlink-connector": "^6.2.14",
"apexcharts": "^3.27.3",
"ethers": "^4.0.49",
"framer-motion": "^4.1.17",
"react": "^18.1.0",
"react-apexcharts": "^1.3.9",
"react-bootstrap-sweetalert": "5.2.0",
"react-dom": "^18.1.0",
"react-github-btn": "^1.2.1",
"react-icons": "^4.2.0",
"react-jvectormap": "0.0.16",
"react-router-dom": "5.2.1",
"react-scripts": "^4.0.3",
"react-step-wizard": "^5.3.11"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.3",
"@types/react-router-dom": "^5.2.1",
"classnames": "2.3.1",
"dotenv": "^16.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"prettier": "2.2.1",
"typescript": "^4.2.4",
"web3.storage": "^4.2.0"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"scripts": {
"start": "react-scripts start",
"start:nobrowser": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "node scripts/deploy",
"lint:check": "eslint . --ext=js,jsx; exit 0",
"lint:fix": "eslint . --ext=js,jsx --fix; exit 0",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start"
},
"optionalDependencies": {
"@babel/core": "7.14.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
"cover 99.8%",
"not dead",
"not OperaMini all"
],
"development": [
"cover 99.8%",
"not dead",
"not OperaMini all"
]
}
}