-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 746 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 746 Bytes
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
{
"name": "tesseract",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "tsc && cat .env.example > .env && node dist/index.js",
"dockerize": "docker build -t phanletrunghieu/ocrer ."
},
"dependencies": {
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/generic-pool": "^3.1.9",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.33",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"generic-pool": "^3.7.2",
"morgan": "^1.10.0",
"tesseract.js": "^2.1.4"
},
"devDependencies": {
"typescript": "^4.2.3",
"typescript-deno-plugin": "^1.31.0"
}
}