-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 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
47
48
49
50
51
{
"name": "@ameio/html-to-pdf",
"version": "1.0.1",
"description": "HTML to PDF generator package",
"main": "./dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && nodemon ./dist/app.js",
"start:prod": "tsc && node ./dist/app.js",
"build": "tsc",
"prepare": "npm run build"
},
"author": "Manish Gondaliya <codersgyan@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.20",
"@types/node": "^20.8.8",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"glob": "^10.3.10",
"node-libcurl": "^3.0.0",
"puppeteer": "^21.5.0",
"technicalindicators": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"nodemon": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ameio/node-html-pdf.git"
},
"keywords": [
"html to pdf",
"generate html to pdf",
"create html to pdf"
],
"bugs": {
"url": "https://github.com/ameio/node-html-pdf/issues"
},
"homepage": "https://github.com/ameio/node-html-pdf#readme",
"files": [
"dist/**/*"
]
}