-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.08 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
{
"name": "docpackr",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.6.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"fmt": "prettier . --write",
"check:types": "tsc --noEmit",
"test:e2e": "playwright test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"exifreader": "^4.23.6",
"framer-motion": "^11.3.31",
"geist": "^1.3.0",
"jszip": "^3.10.1",
"next": "14.2.5",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.7.76",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.3",
"tailwind-merge": "^2.5.2",
"tesseract.js": "^5.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@types/jszip": "^3.4.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"adm-zip": "^0.5.16",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix"
],
"*.{ts,tsx,js,jsx,mjs,cjs,css,md,mdx,json,yml,yaml}": [
"prettier --write"
]
}
}