-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.81 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.81 KB
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
106
107
108
109
{
"name": "cluster-node-app",
"version": "1.0.0",
"description": "Vite Starter & TypeScript",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:testnet": "vite --mode testnet",
"dev:production": "vite --mode production",
"start": "vite preview --mode development",
"build": "tsc && vite build",
"build:development": " vite build --mode development",
"build:testnet": "tsc && vite build --mode testnet",
"build:production": "tsc && vite build --mode production",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"rm:all": "rm -rf node_modules .next out dist build",
"re:start": "yarn rm:all && yarn install && yarn dev",
"re:build": "yarn rm:all && yarn install && yarn build",
"re:build-npm": "npm run rm:all && npm install && npm run build",
"dev:host": "vite --host",
"docker:build": "docker build -f ./Dockerfile-local . -t cluster-node-app",
"docker:rm": "docker rm -f cluster-node-app",
"docker:run": "docker run -p 3000:80 --restart=always -d cluster-node-app",
"preview": "vite preview --host --port 80"
},
"dependencies": {
"@chainsafe/bls-keystore": "^3.0.1",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hookform/resolvers": "^3.3.2",
"@iconify/react": "^4.1.1",
"@lidofinance/lido-csm-sdk": "npm:@exromany/[email protected]",
"@lidofinance/lido-ethereum-sdk": "^4.4.0",
"@mui/icons-material": "^5.15.17",
"@mui/lab": "^5.0.0-alpha.155",
"@mui/material": "^5.15.15",
"@reown/appkit": "^1.6.8",
"@reown/appkit-adapter-wagmi": "^1.6.8",
"@tanstack/react-query": "^5.62.3",
"apexcharts": "^4.1.0",
"axios": "^1.6.2",
"bls-eth-wasm": "^1.1.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.11",
"elliptic": "^6.5.4",
"ethereumjs-wallet": "^1.0.1",
"framer-motion": "^10.16.16",
"history": "^5.3.0",
"jotai": "^2.12.1",
"lodash": "^4.17.21",
"memfs": "^4.9.2",
"notistack": "^3.0.1",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-apexcharts": "^1.7.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-helmet-async": "^2.0.3",
"react-hook-form": "^7.48.2",
"react-lazy-load-image-component": "^1.6.0",
"react-router": "^6.20.1",
"react-router-dom": "^6.20.1",
"react-slick": "^0.30.3",
"redstone-api": "^0.4.12",
"simplebar-react": "^3.2.4",
"slick-carousel": "^1.8.1",
"stylis": "^4.3.0",
"stylis-plugin-rtl": "^2.1.1",
"survey-core": "^1.12.5",
"survey-react-ui": "^1.12.5",
"tiny-invariant": "^1.3.3",
"viem": "^2.23.14",
"vite-plugin-node-polyfills": "^0.21.0",
"wagmi": "^2.14.15",
"zod": "3.21.4"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/stylis": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.1.0",
"typescript": "5.3.3",
"vite": "^5.0.7",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-svgr": "^4.2.0"
}
}