forked from umexco/wkhtmltopdf-microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 995 Bytes
/
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
{
"name": "wkhtmltopdf-microservice-app",
"author": "Jonas Gnioui <btxtiger@icloud.com>",
"version": "1.2.0",
"description": "",
"scripts": {
"start": "node dist/index.js",
"build": "rimraf ./dist && tsc",
"build:image": "./docker/autobuild-image.sh",
"docker": "docker compose up",
"test": "npm run build:image && npm run docker",
"format-prettier": "prettier --write \"./src/**/*.{ts,scss,json}\""
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.1",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"string-to-stream": "^3.0.1",
"wkhtmltox": "^1.1.5",
"rimraf": "^4.1.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^4.9.5"
}
}