-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.17 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
{
"name": "readnlearn",
"private": true,
"version": "0.1.9",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"reset": "node scripts/reset-app.js",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"ci": "npm run type-check && npm run lint && npm run test:coverage",
"ci:build": "npm run build && npm run tauri:build",
"security:audit": "npm audit --audit-level=moderate",
"security:audit:fix": "npm audit fix",
"tauri:check": "node scripts/tauri-version-check.cjs",
"pre-release": "npm run type-check && npm run lint && npm run test:run && npm run security:audit && npm run tauri:check",
"version:sync": "node scripts/version-sync.cjs",
"version:patch": "node scripts/version-bump.cjs patch",
"version:minor": "node scripts/version-bump.cjs minor",
"version:major": "node scripts/version-bump.cjs major"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^3.27.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"@hookform/resolvers": "^5.2.2",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.75.0",
"@tanstack/react-query": "^5.90.2",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-opener": "^2",
"axios": "^1.12.2",
"deepl-node": "^1.19.1",
"framer-motion": "^12.23.22",
"idb": "^8.0.3",
"openai": "^6.6.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.64.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.3",
"rehype-raw": "^7.0.0",
"stemmer": "^2.0.1",
"zod": "^4.1.11",
"zustand": "^5.0.8"
},
"optionalDependencies": {
"@types/pg": "^8.11.10",
"pg": "^8.12.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.9.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"happy-dom": "^20.0.0",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"semver": "^7.6.3",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
}
}