-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.02 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
{
"name": "@verida/network-explorer",
"version": "2.4.0",
"private": true,
"scripts": {
"version": "npx genversion --es6 --double ./src/config/version.ts",
"postinstall": "yarn run version",
"dev": "next dev",
"prebuild": "yarn run version",
"build": "next build",
"prestart": "yarn run version",
"start": "next start",
"check:ts": "npx tsc --noEmit",
"check:format": "npx prettier . --check",
"check:lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"check": "yarn run check:format && yarn run check:lint && yarn run check:ts",
"fix:format": "npx prettier . --write",
"fix:lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"fix": "yarn run fix:format && yarn run fix:lint"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@hookform/resolvers": "^3.6.0",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"@sentry/nextjs": "^8.31.0",
"@tanstack/react-query": "^5.74.3",
"@tanstack/react-table": "^8.21.3",
"@verida/client-ts": "^4.4.5",
"@verida/types": "^4.4.1",
"@verida/vda-common": "^4.4.5",
"@verida/vda-did-resolver": "^4.4.5",
"apexcharts": "^3.53.0",
"axios": "^1.8.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"did-resolver": "^4.1.0",
"lucide-react": "^0.488.0",
"next": "14.2.12",
"next-plausible": "^3.12.4",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-apexcharts": "^1.7.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.55.0",
"react-icons": "^5.5.0",
"react-loader-spinner": "^6.1.6",
"react-qr-code": "^2.0.15",
"react-responsive": "^10.0.1",
"react-simple-maps": "^3.0.0",
"recoil": "^0.7.7",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4",
"vaul": "^0.9.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@sentry/types": "^8.31.0",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/events": "^3.0.3",
"@types/node": "^18.19.86",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/react-simple-maps": "^3.0.6",
"autoprefixer": "^10.4.21",
"base64-inline-loader": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.6",
"file-loader": "^6.2.0",
"genversion": "^3.2.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.12",
"ttf-loader": "^1.0.2",
"typescript": "^5.8.3"
}
}