-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1010 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1010 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pdflibrary",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aigeoo/pdfLibrary.git"
},
"bugs": {
"url": "https://github.com/aigeoo/pdfLibrary/issues"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"nodemon": "^3.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"canvas": "^2.11.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^7.0.1",
"helmet": "^7.0.0",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"parse-pdf": "^1.0.0",
"pdfreader": "^3.0.0"
}
}