-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.42 KB
/
package.json
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": "dataprotector-usecase-demo",
"private": true,
"version": "0.0.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.0.19",
"@fontsource/inter": "^5.0.17",
"@fontsource/mulish": "^5.0.16",
"@fontsource/space-grotesk": "^5.0.16",
"@fontsource/space-mono": "^5.0.18",
"@iexec/dataprotector": "2.0.0-beta.7",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@rollbar/react": "^0.11.2",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-router": "^1.22.3",
"@vercel/analytics": "^1.3.1",
"@web3modal/wagmi": "^5.1.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"medium-zoom": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-transition-group": "^4.4.5",
"rollbar": "^2.26.4",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"use-local-storage-state": "^19.1.0",
"wagmi": "^2.12.11",
"zustand": "^4.5.0"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/router-vite-plugin": "^1.15.11",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.17",
"@types/react-transition-group": "^4.4.10",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.33",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}