-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 KB
/
package.json
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
{
"name": "next-flask",
"version": "0.1.0",
"private": true,
"scripts": {
"flask-dev": "set FLASK_DEBUG=1 && pip install -r api/requirements.txt && python api/run.py",
"next-dev": "next dev",
"dev": "concurrently \"npx pnpm run next-dev\" \"npx pnpm run flask-dev\"",
"build": "next build",
"start": "next start -p $PORT",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@pdfme/common": "^4.0.2",
"@pdfme/generator": "^4.0.2",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@react-pdf/renderer": "^3.4.4",
"@types/node": "20.1.4",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"concurrently": "^8.0.1",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"framer-motion": "^11.2.10",
"fs": "^0.0.1-security",
"http2-wrapper": "^2.2.1",
"lucide-react": "^0.379.0",
"mini-css-extract-plugin": "^2.9.0",
"mongodb": "^6.8.0",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"office-text-extractor": "^3.0.3",
"pdf-lib": "^1.17.1",
"postcss": "^8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.5",
"react-pdftotext": "^1.3.0",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.7",
"textractor": "^1.0.3",
"typescript": "5.0.4",
"util": "^0.12.5",
"youtube-transcript": "^1.2.1",
"zod": "^3.23.8"
},
"engines": {
"node": "18.x"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.7.0",
"eslint-plugin-react": "^7.34.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"pnpm": "^8.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2"
}
}