-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.37 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.37 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
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
{
"name": "symfoniya",
"version": "0.1.0",
"private": true,
"author": {
"name": "Alexander Yanovskyy",
"email": "contact@yanovskyy.com"
},
"scripts": {
"next-start": "cross-env BROWSER=none next dev",
"next-build": "next build",
"tauri": "tauri",
"build": "tauri build",
"dev": "tauri dev",
"lint": "next lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@egjs/react-flicking": "^4.11.0",
"@egjs/react-grid": "^1.15.2",
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-context-menu": "^2.1.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.3",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@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.4",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.6",
"@tanstack/react-table": "^8.10.7",
"@tauri-apps/api": "^1.4.0",
"@types/react-virtualized": "^9.21.28",
"@types/react-window": "^1.8.8",
"@types/react-window-infinite-loader": "^1.0.9",
"byte-base64": "^1.1.0",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"kbar": "0.1.0-beta.43",
"lucide-react": "^0.260.0",
"next": "^13.4.9",
"next-themes": "^0.2.1",
"radix-ui": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-toast": "^1.0.3",
"react-virtualized": "^9.22.5",
"react-window": "^1.8.9",
"react-window-infinite-loader": "^1.0.9",
"shadcn-ui": "^0.3.0",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1",
"zod": "^3.21.4"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.1.0",
"@tauri-apps/cli": "^1.4.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.25",
"postcss-import": "^15.1.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.0",
"sass": "^1.63.6",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}