-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "ocr-document-processor",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup-easyocr": "node node_modules/node-easyocr/setup-python-env.js && pip install easyocr",
"test": "jest",
"test:watch": "jest --watch",
"test:python": "node tensorflow/testing/python_interface.mjs"
},
"dependencies": {
"@tensorflow/tfjs": "^4.22.0",
"@types/styled-components": "^5.1.34",
"dotenv": "^16.4.7",
"formidable": "^3.5.2",
"next": "15.2.1",
"node-easyocr": "github:daxfrost/node-easyocr#release",
"openai": "^4.91.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.1.15",
"tesseract.js": "^6.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5"
}
}