This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
102 lines (102 loc) · 2.99 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
{
"name": "stakig-dapp",
"version": "1.0.0",
"description": "",
"keywords": [
"dapp",
"staking"
],
"standard": {
"parser": "@babel/eslint-parser",
"ignore": "src/constants/abi",
"globals": [
"CONFIG"
]
},
"author": {
"name": "Lior Agnin",
"url": "https://github.com/LiorAgnin"
},
"license": "MIT",
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"clean": "rm -rf ./dist",
"build:dist": "npm run clean && cross-env NODE_ENV=production webpack --mode production",
"start:dist": "npm run clean && cross-env NODE_ENV=production webpack-dev-server --hot && http-server ./dist -o",
"start": "cross-env NODE_ENV=production webpack serve --hot --mode development"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.4.2",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@fuseio/walletconnect-web3-provider": "^1.5.4",
"bignumber.js": "^9.1.0",
"classnames": "^2.3.1",
"config": "^3.3.7",
"cross-env": "^7.0.3",
"formik": "^2.2.9",
"foundation-sites": "^6.7.5",
"identicon.js": "^2.3.3",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-content-loader": "^6.2.0",
"react-countup": "^6.3.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-ga4": "^1.4.1",
"react-modal": "^3.15.1",
"react-modal-hook": "^3.0.2",
"react-redux": "^8.0.2",
"react-router": "^6.3.0",
"react-spring": "^9.5.2",
"react-table": "^7.8.0",
"react-tabs": "^5.1.0",
"react-tooltip": "^4.2.21",
"react-transition-group": "^4.4.5",
"react-use-clipboard": "^1.0.8",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.0",
"reset-css": "^5.0.1",
"sanitize.css": "^13.0.0",
"superagent": "^8.0.0",
"web-vitals": "^2.1.4",
"web3": "^1.3.0",
"web3modal": "^1.9.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@svgr/webpack": "^6.3.1",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"favicons": "6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"image-webpack-loader": "^8.1.0",
"mini-css-extract-plugin": "^2.6.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"node-sass": "^7.0.1",
"postcss-loader": "^7.0.1",
"progress-webpack-plugin": "^1.0.16",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^13.0.2",
"standard": "^17.0.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
}
}