-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (64 loc) · 2 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
{
"name": "magic-eye",
"description": "A magic eye app",
"version": "0.9.2",
"type": "module",
"scripts": {
"check-format": "prettier . --check",
"format": "prettier . --write --log-level silent",
"lint": "eslint . --ext .tsx",
"dev": "eslint . --ext .tsx && vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest --environment jsdom ",
"test:watch": "vitest --environment jsdom --watch",
"test:ui": "vitest --environment jsdom --ui",
"test:coverage": "vitest --environment jsdom --coverage"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@tabler/icons-react": "^2.46.0",
"@tailwindcss/forms": "^0.5.7",
"@tauri-apps/api": "^2.0.0-alpha",
"@tauri-apps/plugin-app": "^2.0.0-alpha",
"@tauri-apps/plugin-dialog": "^2.0.0-alpha.5",
"@tauri-apps/plugin-window": "^2.0.0-alpha",
"framer-motion": "^10.18.0",
"hls-video-element": "^1.1.1",
"hls.js": "^1.5.1",
"media-chrome": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-player": "^2.14.1",
"react-router-dom": "^6.21.3",
"use-interval": "^1.4.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0-alpha.21",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^23.2.0",
"json-loader": "^0.5.7",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.2.14",
"vitest": "^1.2.1"
}
}