This repository was archived by the owner on Apr 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.59 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.59 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
{
"name": "inlinepdf",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4",
"scripts": {
"assets:brand": "node ./scripts/generate-brand-assets.mjs",
"build": "pnpm run assets:brand && pnpm run typegen && react-router build",
"cf-typegen": "wrangler types",
"dev": "react-router dev",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"preview": "pnpm run build && vite preview",
"deploy": "pnpm run build && wrangler deploy",
"security:deps": "pnpm audit --prod --audit-level=high",
"verify": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "pnpm run cf-typegen && react-router typegen && tsc -b",
"typecheck:beta": "pnpm --package=typescript@beta dlx tsc -b",
"typegen": "pnpm run typegen:cf && pnpm run typegen:router",
"typegen:cf": "wrangler types",
"typegen:router": "react-router typegen"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@dnd-kit/react": "^0.4.0",
"@fontsource-variable/inter": "^5.2.8",
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@tailwindcss/vite": "^4.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"isbot": "^5.1.39",
"jszip": "^3.10.1",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.6.205",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-image-crop": "^11.0.10",
"react-router": "^7.14.2",
"shadcn": "^4.5.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.33.2",
"@eslint/js": "^10.0.1",
"@react-router/dev": "^7.14.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"prettier": "3.8.3",
"sharp": "^0.34.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"wrangler": "^4.85.0"
}
}