-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.95 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.95 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
{
"name": "tome",
"version": "0.6.8",
"description": "A Calibre-integrated book tracker",
"homepage": "https://github.com/masonfox/tome",
"author": "Mason Fox <masonfox22@gmail.com> (https://github.com/masonfox)",
"funding": "https://www.buymeacoffee.com/masonfox",
"keywords": [
"calibre",
"books",
"book tracker",
"reading"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "tsx ./lib/db/migrate.ts",
"db:backup": "tsx scripts/backup.ts",
"db:restore": "tsx scripts/restore.ts",
"db:list-backups": "tsx scripts/list-backups.ts",
"db:generate": "DATABASE_PATH=./data/tome.db npx drizzle-kit generate",
"db:push": "DATABASE_PATH=./data/tome.db npx drizzle-kit push",
"db:studio": "DATABASE_PATH=./data/tome.db npx drizzle-kit studio",
"db:seed": "tsx scripts/seed.ts",
"db:reset": "bash scripts/reset-database.sh",
"sync-calibre": "tsx scripts/sync-calibre.ts",
"test": "TZ=UTC vitest run",
"test:unit": "TZ=UTC vitest run __tests__/unit",
"test:integration": "TZ=UTC vitest run __tests__/integration",
"test:e2e": "TZ=UTC vitest run __tests__/e2e",
"test:component": "TZ=UTC vitest run __tests__/components __tests__/hooks",
"test:watch": "TZ=UTC vitest",
"test:ui": "TZ=UTC vitest --ui",
"test:coverage": "TZ=UTC vitest run --coverage"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mdxeditor/editor": "^3.52.1",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.12",
"better-sqlite3": "^12.4.1",
"clsx": "^2.1.0",
"date-fns": "^3.3.0",
"date-fns-tz": "^3.2.0",
"drizzle-orm": "^0.44.7",
"lucide-react": "^0.344.0",
"next": "16.1.1",
"pino": "^9.3.1",
"pino-http": "^9.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-markdown": "^10.1.0",
"recharts": "^2.12.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^2.2.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.91.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.2",
"@types/node": "^20",
"@types/react": "19",
"@types/react-dom": "19",
"@vitest/coverage-istanbul": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.31.7",
"eslint": "^8",
"eslint-config-next": "16.1.1",
"happy-dom": "^20.0.10",
"pino-pretty": "^11.2.0",
"postcss": "^8",
"tailwindcss": "^3.4.0",
"typescript": "^5",
"vitest": "^4.0.16"
},
"overrides": {
"pino": "^9.3.1"
},
"pnpm": {
"patchedDependencies": {}
}
}