-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "html-to-pdf",
"version": "1.0.0",
"homepage": "https://github.com/muehlemann-popp/html-to-pdf",
"license": "MIT",
"scripts": {
"start": "touch ./build/main.dev.js; npm-run-all --parallel --print-label watch:server watch:build",
"start:prod": "node ./build/main.prod.js",
"watch:server": "nodemon ./build/main.dev.js --watch ./build/main.dev.js",
"watch:build": "env-cmd -f .env.dev webpack --watch",
"build": "yarn build:prod",
"build:prod": "env-cmd -f .env.prod webpack",
"build:dev": "env-cmd -f .env.dev webpack",
"lint": "eslint ./",
"test": "jest --colors --runInBand"
},
"dependencies": {
"@sentry/node": "^7.19.0",
"@sentry/tracing": "^7.19.0",
"@types/body-parser": "^1.19.2",
"@types/marked": "^4.0.7",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"marked": "^4.2.2",
"prom-client": "^14.1.0",
"puppeteer": "19.2.2",
"puppeteer-core": "19.2.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@types/terser-webpack-plugin": "^5.0.4",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"env-cmd": "^10.1.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-ts": "^0.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"supertest": "^6.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": "~16"
}
}