-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 2.04 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
59
60
61
62
63
64
{
"name": "pdf-generator-service",
"version": "0.4.0",
"description": "A simple express service that generates a pdf based on the submitted HTML",
"main": "index.js",
"homepage": "https://github.com/isneezy/pdf-generator-service",
"repository": "https://github.com/isneezy/pdf-generator-service",
"bugs": "https://github.com/isneezy/pdf-generator-service/issues",
"author": "Ivan Vilanculo <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "node dist/src/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc --esModuleInterop --resolveJsonModule --outDir dist src/index.ts",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"pretest": "rm -rf ./dist",
"test": "jest",
"semantic-release": "npx semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.8",
"@types/inline-css": "^3.0.1",
"@types/jest": "^26.0.13",
"@types/jsdom": "^16.2.4",
"@types/lodash.defaults": "^4.2.6",
"@types/lodash.pick": "^4.4.6",
"@types/mkdirp": "^1.0.1",
"@types/node": "^18.11.18",
"@types/pdf-parse": "^1.1.0",
"@types/supertest": "^2.0.10",
"@types/uid-safe": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.5.3",
"nodemon": "^2.0.5",
"prettier": "^2.1.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.1",
"ts-node": "^10.1.0",
"typescript": "^4.9.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"consola": "^2.15.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"inline-css": "^3.0.0",
"jsdom": "^19.0.0",
"lodash.defaults": "^4.2.0",
"lodash.pick": "^4.4.0",
"pdf-lib": "^1.11.2",
"pdf-parse": "^1.1.1",
"puppeteer": "^13.5.0",
"uid-safe": "^2.1.5"
}
}