-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.84 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
110
111
{
"name": "datamine-network-dashboard",
"version": "1.0.0",
"private": true,
"homepage": ".",
"description": "A web-based dashboard for the Datamine Network, built with React and TypeScript, providing tools to interact with Datamine smart contracts, view analytics, and manage assets across different blockchain layers.",
"keywords": [
"datamine",
"flux",
"blockchain",
"react",
"typescript",
"web3",
"dashboard",
"defi",
"ethereum",
"arbitrum",
"material-ui"
],
"author": "Datamine Network",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Datamine-Crypto/dashboard.git"
},
"bugs": {
"url": "https://github.com/Datamine-Crypto/dashboard/issues"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource-variable/roboto": "^5.2.10",
"@metamask/detect-provider": "^2.0.0",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.2",
"@mui/system": "^9.1.2",
"@mui/utils": "^9.1.1",
"@mui/x-date-pickers": "^9.7.0",
"big.js": "^7.0.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.21",
"events": "^3.3.0",
"fuse.js": "^7.4.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"tss-react": "^4.9.21",
"uuid": "^14.0.1",
"viem": "^2.53.1",
"zustand": "^5.0.14"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"eject": "echo 'Vite does not require an eject script.'",
"deploy": "vite build --base=./",
"bundle-visualizer": "npx vite-bundle-visualizer",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx,json,css,scss,md}",
"lint": "eslint .",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}": [
"yarn eslint --fix",
"yarn prettier --write"
]
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/big.js": "^7.0.0",
"@types/events": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-vis": "^1.11.15",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.9.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-mkcert": "^2.1.0"
},
"packageManager": "yarn@4.17.0"
}