-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.42 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.42 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
{
"name": "web3-messaging-usecase-demo",
"private": true,
"version": "1.8.0",
"type": "module",
"scripts": {
"dev": "npm run dev:prod",
"dev:prod": "vite --mode prod",
"dev:staging": "vite --mode staging",
"build": "vite build --mode prod",
"check-types": "tsc --noEmit",
"check-format": "prettier --check src",
"format": "prettier --write src",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"preview": "vite preview"
},
"dependencies": {
"@fontsource-variable/anybody": "^5.2.7",
"@fontsource-variable/mulish": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@fontsource/space-mono": "^5.2.9",
"@graphql-codegen/introspection": "^5.0.0",
"@iexec/dataprotector": "^2.0.0-beta.21",
"@iexec/web3mail": "^1.7.0",
"@iexec/web3telegram": "^0.1.0-alpha.7",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@reown/appkit": "^1.8.13",
"@reown/appkit-adapter-wagmi": "^1.8.13",
"@rollbar/react": "^1.0.0",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-query": "^5.90.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"graphql": "^16.12.0",
"graphql-request": "^7.3.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-feather": "^2.0.10",
"react-router-dom": "^7.9.5",
"react-transition-group": "^4.4.5",
"rollbar": "^2.26.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.17",
"tailwindcss-animate": "^1.0.7",
"use-local-storage-state": "^19.5.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.0.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitejs/plugin-react-swc": "^4.2.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "^5.9.3",
"vite": "^7.2.2"
}
}