-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.16 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
{
"name": "ParallelTexts",
"private": true,
"type": "module",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build && node scripts/strip-models-from-build.mjs",
"upload-models": "node scripts/upload-models-to-r2.mjs",
"preview": "pnpm run build && wrangler dev",
"test": "vitest run",
"lint": "eslint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"check": "prettier --check \"**/*.{ts,tsx,js,jsx}\"",
"typecheck": "tsc --noEmit",
"deploy": "pnpm run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@fontsource-variable/inter": "^5.2.8",
"@huggingface/transformers": "^4.2.0",
"@phosphor-icons/react": "^2.1.10",
"@posthog/react": "^1.10.2",
"@tailwindcss/vite": "^4",
"@tanstack/react-devtools": "latest",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.4.3",
"dexie-react-hooks": "^4.4.0",
"epubjs": "^0.3.93",
"jszip": "^3.10.1",
"pdfjs-dist": "^6.0.227",
"posthog-js": "^1.390.2",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-dropzone": "^15.0.0",
"shadcn": "^4.11.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"pnpm": {
"neverBuiltDependencies": [
"onnxruntime-node"
]
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.40.1",
"@tanstack/devtools-vite": "latest",
"@tanstack/eslint-config": "latest",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6",
"eslint": "^9",
"jsdom": "^28",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"typescript": "^6",
"vite": "^8",
"vitest": "^4",
"wrangler": "^4.99.0"
}
}