-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
153 lines (153 loc) · 4.61 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "dxup",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "bun --bun x vite build",
"dev": "bun --bun x vite",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "bun --bun x eslint .",
"prepare": "bun --bun x tsr generate",
"preview": "bun --bun x vite preview",
"tauri": "bun --bun x tauri",
"typecheck": "bun --bun x tsc --noEmit"
},
"prettier": {
"bracketSpacing": true,
"importOrder": [
"^(.*)[.]css$",
"^react/(.*)$",
"^~/(.*)$",
"^[./](.*)$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": [
"prettier-plugin-packagejson",
"prettier-plugin-organize-imports",
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": "."
},
"settings": {
"react": {
"version": "detect"
}
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:@tanstack/eslint-plugin-query/recommended",
"plugin:jsx-a11y/recommended",
"plugin:deprecation/recommended",
"eslint-config-prettier"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/explicit-module-boundary-types": "warn",
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"@typescript-eslint/prefer-promise-reject-errors": "off",
"@typescript-eslint/restrict-template-expressions": [
"warn",
{
"allowNumber": true,
"allowBoolean": true,
"allowNullish": true
}
],
"react/prop-types": "off"
},
"ignorePatterns": [
"**/*.config.*",
"styled-system",
"dist",
"src-tauri/target"
]
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"next-themes": "^0.3.0",
"sonner": "^1.5.0",
"vaul": "^0.9.1"
},
"devDependencies": {
"@ark-ui/react": "^3.5.0",
"@fontsource/red-hat-display": "^5.0.20",
"@fontsource/red-hat-mono": "^5.0.18",
"@fontsource/red-hat-text": "^5.0.18",
"@nanostores/react": "^0.7.2",
"@radix-ui/react-slot": "^1.1.0",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/eslint-plugin-query": "^5.51.1",
"@tanstack/query-async-storage-persister": "^5.51.17",
"@tanstack/react-query": "^5.51.1",
"@tanstack/react-query-devtools": "^5.51.11",
"@tanstack/react-query-persist-client": "^5.51.18",
"@tanstack/react-virtual": "^3.8.3",
"@tanstack/router-cli": "^1.45.8",
"@tanstack/router-devtools": "^1.45.1",
"@tanstack/router-plugin": "^1.45.0",
"@tauri-apps/api": "^1.6.0",
"@tauri-apps/cli": "^1.6.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.3.1",
"ansi_up": "^6.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"immer": "^10.1.1",
"lucide-react": "^0.423.0",
"nanostores": "^0.10.3",
"postcss": "^8.4.40",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.7",
"tailwindcss-animate": "^1.0.7",
"tauri-plugin-store-api": "https://github.com/tauri-apps/tauri-plugin-store#v1",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2"
}
}