-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.78 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
{
"name": "rapidraw",
"author": "Timon Käch",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"tauri": "tauri",
"start": "tauri dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@clerk/react": "^6.0.1",
"@dnd-kit/core": "^6.3.1",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@uiw/color-convert": "^2.9.6",
"@uiw/react-color-wheel": "^2.9.6",
"clsx": "^2.1.1",
"framer-motion": "^12.35.2",
"konva": "^10.2.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-draggable": "^4.5.0",
"react-image-crop": "^11.0.10",
"react-konva": "^19.2.3",
"react-toastify": "^11.0.5",
"react-window": "^2.2.7",
"react-zoom-pan-pinch": "^3.7.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.1"
}
}