-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "dotdir",
"version": "0.1.4",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n lib,app -c cyan,green 'turbo run dev' 'vite'",
"build": "turbo run build && tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"serve": "pnpm tauri dev serve",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"fmt": "eslint . --cache --fix",
"fmt:check": "eslint . --cache --fix-dry-run",
"test": "turbo run test"
},
"dependencies": {
"@dotdirfm/ui": "workspace:*",
"@dotdirfm/ui-utils": "workspace:*",
"@tauri-apps/api": "catalog:",
"@tauri-apps/plugin-deep-link": "catalog:",
"@tauri-apps/plugin-opener": "catalog:",
"jotai": "catalog:",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@eslint/js": "catalog:",
"@tauri-apps/cli": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"concurrently": "catalog:",
"eslint": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-react-refresh": "catalog:",
"globals": "catalog:",
"turbo": "catalog:",
"typescript": "~6.0.2",
"typescript-eslint": "catalog:",
"vite": "^8.0.3"
},
"packageManager": "pnpm@10.30.3"
}