-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "pdf-renderer",
"descrption": "Standalone server using Chrome/Puppeteer to generate PDFs from HTML input.",
"version": "v1.3.0",
"email": "[email protected]",
"url": "https://github.com/dbl-works/pdf-renderer",
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch-ts": "tsc -w",
"server": "nodemon dist/index.js",
"dev": "concurrently -k -p \"[{name}]\" -n \"Typescript,Node\" -c \"blue.bold,yellow.bold\" \"yarn run watch-ts\" \"yarn run server\" ",
"production": "NODE_ENV=production node dist/index.js",
"local": "NODE_ENV=development yarn run dev ",
"lint": "eslint -c .eslintrc.js \"src/**/*.ts\""
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/node": "22.7.8",
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"concurrently": "9.0.1",
"eslint": "9.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"nodemon": "^3.1.7",
"ts-node": "^10.4.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.567.0",
"express": "^5.0.1",
"piscina": "^4.7.0",
"puppeteer": "^23.6.0"
}
}