forked from uyamazak/hc-pdf-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "hc-pdf-server",
"version": "1.1.0",
"description": "html to pdf rendering server using Headless Chrome",
"main": "dist/server.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "tap --ts --no-check-coverage --timeout=180 test/**/*.test.ts",
"start": "node dist/src/server.js",
"dev": "ts-node ./src/server.ts",
"lint": "eslint --fix ./ --ext ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uyamazak/hc-pdf-server.git"
},
"keywords": [
"fastify",
"pdf",
"headless chrome",
"puppeteer"
],
"author": "uyamazak <[email protected]> (https://github.com/uyamazak/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/uyamazak/hc-pdf-server/issues"
},
"homepage": "https://github.com/uyamazak/hc-pdf-server#readme",
"dependencies": {
"@uyamazak/fastify-hc-pages": "^1.0.5",
"fastify": "^3.18.0",
"fastify-bearer-auth": "^5.1.0",
"fastify-formbody": "^5.0.0",
"fastify-plugin": "^3.0.0",
"puppeteer": "^10.0.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.8",
"@types/node": "^16.3.0",
"@types/pdf-parse": "^1.1.0",
"@types/tap": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"fastify-cli": "^2.13.0",
"pdf-parse": "^1.1.1",
"prettier": "^2.3.1",
"tap": "^15.0.9",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}