-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.34 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "frac-gen",
"version": "0.8.0",
"private": true,
"description": "react app to generate geometric visuals",
"keywords": [
"react",
"vite",
"typescript",
"tailwindcss",
"frcatals",
"geometry",
"svg",
"node.js"
],
"homepage": "https://xenitane.github.io/geo-vis",
"bugs": {
"url": "https://www.github.com/xenitane/geo-vis/issues"
},
"repository": {
"type": "git",
"url": "https://www.github.com/xenitane/geo-vis"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "xenitane",
"url": "https://www.github.com/xenitane"
},
"contributors": [
{
"name": "dependabot[bot]"
},
{
"name": "imgbot[bot]"
},
{
"name": "github-actions[bot]"
}
],
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,sass,scss,less,html,md,yml,yaml}\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@preact/signals-react": "^1.3.8",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"class-variance-authority": "^0.7.0",
"embla-carousel-react": "^8.1.8",
"lucide-react": "^0.373.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.2",
"react-icons": "^5.1.0",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^3.5.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/eslint": "^8.56.6",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-eslint": "^1.0.2",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^5.2.6"
},
"engines": {
"node": ">=18"
},
"browserList": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}