forked from appvantageasia/html2pdf-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "html2pdf-service",
"version": "0.0.0-development",
"engines": {
"node": ">=18.2"
},
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"lint:fix": "yarn lint --fix",
"build": "tsc",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@octokit/rest": "^19.0.11",
"@types/express": "^4.17.17",
"@types/k6": "^0.44.1",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.5",
"@types/puppeteer": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^7.1.1",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"puppeteer": "^20.4.0"
},
"packageManager": "[email protected]"
}