-
-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.08 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
{
"name": "rapidraw",
"author": "Timon Käch",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"tauri": "tauri",
"start": "tauri dev",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"i18n:extract": "i18next-cli extract",
"i18n:check": "i18next-cli extract --ci --dry-run && npm run i18n:runtime-check",
"i18n:runtime-check": "node src/i18n/check-runtime.mjs",
"i18n:lint": "i18next-cli lint"
},
"dependencies": {
"@clerk/react": "^6.12.0",
"@dnd-kit/core": "^6.3.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@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.10.3",
"@uiw/react-color-wheel": "^2.10.3",
"clsx": "^2.1.1",
"framer-motion": "^12.42.2",
"i18next": "^26.3.4",
"konva": "^10.3.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lucide-react": "^1.23.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"react-image-crop": "^11.1.2",
"react-konva": "^19.2.5",
"react-toastify": "^11.1.0",
"react-window": "^2.2.7",
"simple-icons": "^16.25.0",
"uuid": "^14.0.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2.11.4",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"esbuild": "^0.28.1",
"eslint": "^9.39.2",
"eslint-plugin-i18next": "^6.1.5",
"eslint-plugin-react": "^7.37.5",
"i18next-cli": "^1.65.0",
"prettier": "^3.9.4",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.0",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3"
},
"allowScripts": {
"esbuild@0.28.1": true,
"@swc/core@1.15.43": true
}
}