-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
46
{
"name": "pdf-parser",
"version": "1.0.0",
"description": "pdf-parser standlone API / Lambda Function to parse images from pdf",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"preserve": "npm run build",
"eslint:fix": "eslint --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-lambda": "^1.0.7",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"config": "^3.3.9",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gm": "^1.25.0",
"imagemagick": "^0.1.3",
"pdf-parse": "^1.1.1",
"pdf2json": "^1.2.0",
"pdf2pic": "^2.1.4",
"remove.bg": "^1.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/gm": "^1.25.0",
"@types/node": "^18.14.2",
"@types/pdf-parse": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
}
}