-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.67 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.67 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
{
"name": "iota-explorer",
"private": true,
"scripts": {
"dev": "vite --port 3000",
"test": "pnpm test:unit",
"test:unit": "vitest run",
"typecheck": "tsc -b",
"playwright": "playwright",
"build": "pnpm typecheck && vite build",
"eslint:check": "eslint --max-warnings=0 \"./src/**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "pnpm eslint:check --fix",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"lint": "pnpm eslint:check && pnpm prettier:check",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"preview": "vite preview",
"ampli": "ampli",
"pull-amplitude": "ampli pull web && node prependLicense.mjs && prettier -w ampli.json src/lib/utils/analytics/ampli/index.ts"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.32.2",
"@fontsource-variable/inter": "^5.0.5",
"@headlessui/react": "^1.7.15",
"@iota/apps-backend-client": "workspace:*",
"@iota/apps-ui-icons": "workspace:*",
"@iota/apps-ui-kit": "workspace:*",
"@iota/core": "workspace:*",
"@iota/dapp-kit": "workspace:*",
"@iota/identity-wasm": "1.7.0-beta.1",
"@iota/iota-names-sdk": "workspace:^",
"@iota/iota-sdk": "workspace:*",
"@sentry/react": "^7.120.3",
"@sentry/vite-plugin": "^2.22.5",
"@tanstack/react-query": "^5.50.1",
"@tanstack/react-query-devtools": "^5.58.0",
"@tanstack/react-table": "^8.9.3",
"@types/d3-array": "^3.0.5",
"@types/throttle-debounce": "^5.0.0",
"@visx/axis": "^3.3.0",
"@visx/curve": "^3.3.0",
"@visx/event": "^3.3.0",
"@visx/responsive": "^3.3.0",
"@visx/scale": "^3.3.0",
"@visx/shape": "^3.3.0",
"@visx/tooltip": "^3.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"d3-array": "^3.2.4",
"date-fns": "^2.30.0",
"prism-react-renderer": "^2.3.1",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.10",
"react-hook-form": "^7.45.2",
"react-resizable-panels": "^0.0.39",
"react-router-dom": "^6.30.3",
"throttle-debounce": "^5.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@amplitude/ampli": "^1.36.2",
"@amplitude/analytics-types": "^2.11.0",
"@babel/core": "^7.22.9",
"@playwright/test": "^1.56.1",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"happy-dom": "^20.0.0",
"onchange": "^7.1.0",
"postcss": "^8.4.31",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"vite": "^8.0.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}