-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.36 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.36 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
{
"name": "staker-console",
"version": "0.1.0",
"type": "module",
"description": "Staker Console",
"license": "GPL-3.0",
"scripts": {
"dev": "vite --force",
"build": "tsc && vite build",
"start": "serve -s dist",
"preview": "vite preview",
"https-preview": "serve dist",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:check": "eslint --max-warnings=0 \"src/**/*.{js,jsx,ts,tsx,json}\"",
"ts:check": "tsc --noEmit",
"ts:check:strict": "tsc --noEmit --skipLibCheck",
"ts:check:staged": "node scripts/ts-check-staged.js",
"test:unit": "vitest",
"prepare": "husky"
},
"dependencies": {
"@chainsafe/ssz": "^1.3.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^9.0.0",
"@mui/material": "^9.0.0",
"@reown/appkit": "^1.8.19",
"@reown/appkit-adapter-wagmi": "^1.8.19",
"@tanstack/react-query": "^5.90.20",
"bignumber.js": "^10.0.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.1",
"react-router-dom": "^7.14.0",
"recoil": "^0.7.7",
"serve": "^14.1.2",
"wagmi": "^2.15.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^20.19.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"buffer": "^6.0.3",
"clsx": "^2.1.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"tailwindcss": "^4.2.2",
"tsc-files": "^1.1.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.2",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"src/**/!(*.test).{ts,tsx}": [
"node scripts/ts-check-staged.js",
"prettier --write"
],
"src/**/*.{js,jsx,json,css,scss,md}": "prettier --write"
},
"keywords": []
}