-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.46 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.46 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": "@oasisprotocol/explorer-frontend",
"version": "1.26.2",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/oasisprotocol/explorer.git"
},
"scripts": {
"build": "node ./internals/scripts/build.js",
"clean": "rm -rf build/ node_modules/.vite/",
"start": "vite",
"checkTs": "tsc --noEmit",
"lint": "eslint --ext js,ts,tsx ./ --max-warnings 0",
"lint:fix": "yarn run lint --fix",
"lint-git": "node ./internals/scripts/gitlint.js",
"lint-docs": "markdownlint --ignore '**/node_modules/**' '**/*.md'",
"lint-changelog": "markdownlint --config .changelog/.markdownlint.yml .changelog/",
"changelog": "node ./internals/scripts/changelog.js",
"release-tag": "node ./internals/scripts/release-tag.js",
"prettify": "prettier src internals --write",
"test": "vitest run",
"test:watch": "vitest"
},
"browserslist": {
"production": [
"defaults",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=20"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"react-refresh": "0.16.0",
"jackspeak": "2.1.1",
"eslint-plugin-react": "7.37.4",
"@tailwindcss/oxide": "4.1.18"
},
"dependencies": {
"@ethereumjs/util": "9.1.0",
"@fontsource-variable/inter": "^5.2.6",
"@fontsource-variable/roboto-mono": "^5.0.17",
"@metamask/jazzicon": "2.0.0",
"@monaco-editor/react": "^4.7.0",
"@oasisprotocol/client": "1.2.0",
"@oasisprotocol/client-rt": "1.2.0",
"@oasisprotocol/ui-library": "file:./ui-library",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-query-devtools": "5.91.3",
"axios": "1.13.5",
"bignumber.js": "9.1.2",
"bip39": "^3.1.0",
"date-fns": "3.6.0",
"i18next": "23.16.8",
"js-yaml": "^4.1.0",
"monaco-editor": "^0.52.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "14.1.3",
"react-router": "^7.13.0",
"recharts": "2.15.4",
"viem": "^2.31.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "14.5.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "20.17.24",
"@types/node-fetch": "2.6.12",
"@types/react": "18.3.19",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "^6.0.1",
"buffer": "^6.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"events": "^3.1.0",
"jsdom": "^26.1.0",
"markdownlint-cli": "0.44.0",
"node-fetch": "2.7.0",
"prettier": "3.5.3",
"process": "0.11.10",
"react-app-polyfill": "3.0.0",
"stream-browserify": "3.0.0",
"tailwindcss": "^4.1.18",
"typescript": "5.6.3",
"vite": "^6.4.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}