-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "htmlforpdf",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"typecheck": "tsc -p .",
"start": "tsx src/index.ts",
"dev": "tsx -r tsconfig-paths/register --watch src/index.ts",
"prepare": "husky install",
"lint": "eslint 'src/**/*.{ts,js}'",
"lint:fix": "eslint 'src/**/*.{ts,js}' --fix",
"format": "prettier --write .",
"test": "vitest",
"test:watch": "vitest --watch",
"worker": "tsx src/worker/pdfWorker.ts",
"dev:worker": "tsx -r tsconfig-paths/register --watch src/worker/pdfWorker.ts"
},
"keywords": [],
"author": "Edvaldo Lima",
"license": "ISC",
"type": "module",
"dependencies": {
"@vinejs/vine": "^4.3.0",
"amqplib": "^0.10.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"playwright": "^1.58.2",
"undici": "^5.23.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.0",
"@commitlint/config-conventional": "^17.6.0",
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.17",
"@types/node": "^20.19.33",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"tsx": "^3.12.7",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
}
}