-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.02 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.02 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
{
"name": "syncwatcher",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/studiojin-dev/SyncWatcher.git"
},
"license": "Source-Available",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage --run"
},
"dependencies": {
"@tabler/icons-react": "^3.22.0",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-opener": "2.5.3",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-updater": "2.10.0",
"@testing-library/dom": "^10.4.1",
"framer-motion": "^12.38.0",
"i18next": "^25.10.4",
"js-yaml": "^4.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.6.1",
"react-virtuoso": "^4.18.3",
"zustand": "^5.0.10"
},
"devDependencies": {
"@mantine/core": "^8.3.18",
"@mantine/hooks": "^8.3.18",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "2.10.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"autoprefixer": "^10.4.27",
"emotion": "^11.0.0",
"eslint": "^10.0.0",
"happy-dom": "^20.8.9",
"postcss": "^8.5.8",
"rollup-plugin-license": "^3.6.0",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}