-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "ocr",
"version": "1.0.0",
"description": "OCR, Image to text converter.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"rimraf": "./node_modules/rimraf/bin.js",
"build": "rimraf ./dist && tsc",
"dev": "nodemon --exec node --loader ts-node/esm src/index.ts",
"tsc": "tsc",
"watch:tsc": "tsc -W",
"watch:js": "nodemon dist/index.js",
"nodemon:watch": "nodemon --exec tsc -w ./src/index.ts --outDir ./dist"
},
"nodemonConfig": {
"ignore": [
"./jsons"
]
},
"keywords": [
"OCR",
"Image to text."
],
"author": "Moses",
"license": "MIT",
"dependencies": {
"@grammyjs/conversations": "^1.1.1",
"@grammyjs/files": "^1.0.4",
"@techstark/opencv-js": "^4.7.0-release.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"canvas": "^2.11.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"grammy": "^1.14.1",
"helmet": "^7.0.0",
"jimp": "^0.22.8",
"jsdom": "^22.1.0",
"mongoose": "^7.3.4",
"socket.io": "^4.7.2",
"tesseract.js": "^4.1.1"
},
"devDependencies": {
"@types/jsdom": "^21.1.1",
"nodemon": "^2.0.20",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}