-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.37 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
{
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"commit": "czg",
"format": "biome check --write --verbose",
"test": "vitest run --reporter verbose --typecheck.enabled --coverage",
"scrape": "ts-node -T webscrape/script/scrapeProductInfo.ts",
"clean": "ts-node -T webscrape/script/cleanProductInfo.ts",
"img": "ts-node -T webscrape/script/processImage.ts",
"upload": "ts-node -T webscrape/script/upload.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.682.0",
"@aws-sdk/s3-request-presigner": "^3.637.0",
"axios": "^1.7.7",
"cheerio": "1.0.0",
"dotenv": "^16.4.5",
"puppeteer": "^23.4.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.5.0",
"@types/node": "^22.8.6",
"@vitest/coverage-v8": "^2.0.5",
"cz-git": "1.10.0",
"czg": "1.10.0",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm format",
"pre-push": "pnpm format",
"commit-msg": "npx --no -- commitlint --edit \"$1\""
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}