-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 834 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 834 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
29
30
31
32
{
"name": "node-ocr-server",
"version": "0.0.0",
"description": "Node OCR microsservice using tesseract",
"repository": {
"type": "git",
"url": "git+https://github.com/maxjf1/node-ocr-server.git"
},
"license": "ISC",
"scripts": {
"build": "babel src -d dist",
"dev": "export FILES_PATH=\"$PWD/temp\" && nodemon --exec babel-node src/index.js",
"start": "node dist/index.js",
"lint": "eslint .",
"prettier": "prettier-check \"src/**/*.js\"",
"database": "docker-compose up"
},
"dependencies": {
"amqplib": "^0.5.5",
"node-fetch": "^2.6.0",
"node-tesseract-ocr": "^1.0.0"
},
"main": "./dist/index.js",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/node": "*",
"@babel/preset-env": "*",
"eslint": "*",
"nodemon": "*"
}
}