generated from AlessioScarfone/ts-express-rest-api-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "async-ocr",
"version": "1.3.4",
"description": "Async OCR",
"main": "index.js",
"scripts": {
"prestart-dev": "ncp \"traineddata_lang\" \".\"",
"start-dev": "nodemon -r dotenv/config --watch src src/index.ts dotenv_config_path=.env",
"start-dev:log": "npm run start 2>&1| tee log.txt",
"start-prod": "node -r dotenv/config dist/index.js dotenv_config_path=.env.prod",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"prod": "node dist/index.js",
"test": "jest --verbose=true --runInBand --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"lint": "eslint src",
"docker-build": "docker build -t async-ocr --progress=plain .",
"docker-run-dev": "docker-compose up"
},
"keywords": [
"express",
"typescript",
"rest",
"redis",
"bull",
"api",
"ocr"
],
"author": "Alessio Scarfone",
"license": "MIT",
"devDependencies": {
"@types/bull": "^3.15.9",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^28.1.6",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.0.6",
"@types/redis": "^4.0.11",
"@types/rsmq": "^0.8.4",
"@types/rsmq-worker": "^0.3.30",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/tesseract.js": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"ncp": "^2.0.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@bull-board/express": "^4.2.2",
"bull": "^4.8.5",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"express-validator": "^6.14.2",
"helmet": "^5.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.4",
"redis": "^4.2.0",
"rsmq": "^0.12.4",
"rsmq-worker": "^0.5.2",
"swagger-ui-express": "^4.5.0",
"tesseract.js": "^3.0.1"
}
}