-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "hightimized",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"postinstall": "lefthook install",
"seed:phase-1": "tsx scripts/build-data/seed-phase-1.ts",
"fixtures": "tsx scripts/build-fixtures/sample-bill.ts"
},
"dependencies": {
"pdf-lib": "1.17.1",
"pdfjs-dist": "5.7.284",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-dropzone": "15.0.0",
"sql.js": "1.14.1",
"tesseract.js": "7.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.0",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react-swc": "4.3.0",
"eslint": "10.2.1",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"jsdom": "^29.1.1",
"lefthook": "2.1.6",
"prettier": "3.8.3",
"tsx": "^4.21.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1",
"vite": "8.0.10",
"vite-plugin-pwa": "1.2.0",
"vitest": "4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"lefthook"
]
}
}