-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "keeper-desktop",
"private": true,
"version": "0.1.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,md}'",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx,json,css,md}'",
"get-hwi": "tsx scripts/get-hwi.ts --cleanup",
"postinstall": "tsx scripts/get-hwi.ts",
"tauri:lint": "cd src-tauri && cargo clippy --all-targets --all-features -- -D warnings",
"tauri:format": "cd src-tauri && cargo fmt",
"tauri:format:check": "cd src-tauri && cargo fmt -- --check"
},
"dependencies": {
"@tanstack/react-query": "^5.52.1",
"@tauri-apps/api": "^1",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.26.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1",
"@types/adm-zip": "^0.5.5",
"@types/node": "^22.5.4",
"@types/openpgp": "^4.4.22",
"@types/qrcode.react": "^1.0.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/tar": "^6.1.13",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.2.1",
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"openpgp": "^5.11.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tar": "^7.4.3",
"tsx": "^4.19.1",
"typescript": "^5.2.2",
"vite": "^5.4.8"
}
}