-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "event-scraper",
"version": "0.0.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.957.0",
"dotenv": "^17.2.3",
"puppeteer-core": "^24.34.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/bun": "latest",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"syncpack": "^13.0.4",
"turbo": "^2.7.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.2",
"private": true,
"scripts": {
"check": "bun run syncpack && biome check && tsc -b",
"format": "biome format",
"lint": "biome lint",
"prepare": "husky",
"syncpack": "syncpack lint",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"syncpack:update": "syncpack update",
"tsc": "tsc -b"
},
"type": "module"
}