forked from kasparkallas/supervisual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.88 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.88 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
{
"name": "superfluid-visualizer",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"tailwind:watch": "tailwindcss -i ./styles/index.css -o ./public/index.css --watch",
"prettier": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@dagrejs/dagre": "~1.1.2",
"@hookform/resolvers": "^3.4.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@superfluid-finance/metadata": "^1.2.2",
"@superfluid-finance/tokenlist": "^4.0.0",
"@tanstack/react-query": "^5.37.1",
"@tanstack/react-router": "^1.33.4",
"babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"copy-text-to-clipboard": "^3.2.0",
"d3-force": "^3.0.0",
"date-fns": "^3.6.0",
"eslint-plugin-react-compiler": "0.0.0-experimental-c8b3f72-20240517",
"fast-average-color": "^9.4.0",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"lucide-react": "^0.378.0",
"query-string": "^9.0.0",
"react": "19.0.0-beta-26f2496093-20240514",
"react-dom": "19.0.0-beta-26f2496093-20240514",
"react-hook-form": "^7.51.4",
"react-jazzicon": "^1.0.4",
"reactflow": "^11.11.3",
"subgraph": "workspace:*",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tinycolor2": "^1.6.0",
"use-async-effect": "^2.2.7",
"viem": "^2.11.1",
"zod": "^3.23.8"
},
"license": "MIT",
"devDependencies": {
"@tanstack/router-devtools": "^1.33.4",
"@tanstack/router-vite-plugin": "^1.32.17",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.12",
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.3.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"shadcn-ui": "^0.8.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"overrides": {
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}