-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
95 lines (95 loc) · 3.9 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "hlidac-shopu",
"version": "2.1.10",
"private": true,
"description": "Rozšíření zobrazuje historická data pro největší české eshopy.",
"author": "TopMonks s.r.o., Apify Technologies s.r.o., Keboola Czech s.r.o. & contributors",
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/topmonks/hlidac-shopu.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/topmonks/hlidac-shopu/issues"
},
"homepage": "https://github.com/topmonks/hlidac-shopu#readme",
"packageManager": "[email protected]",
"dependencies": {
"@aws-sdk/client-dynamodb": "3.699.0",
"ramda": "0.30.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@hckr_/blendid": "9.0.0",
"@types/firefox-webext-browser": "120.0.4",
"@types/node": "22.10.1",
"@types/nunjucks": "3.2.6",
"@types/ramda": "0.30.2",
"@types/whatwg-url": "13.0.0",
"ava": "6.2.0",
"chokidar": "4.0.1",
"chrome-webstore-upload-cli": "3.3.1",
"commander": "12.1.0",
"dotenv-cli": "7.4.4",
"esbuild": "0.24.0",
"gulp-mode": "1.1.0",
"linkedom": "0.18.5",
"npm-run-all2": "7.0.1",
"postcss": "8.4.49",
"postcss-css-variables": "0.19.0",
"puppeteer": "23.9.0",
"rollbar": "2.26.4",
"source-map-explorer": "2.5.3",
"web-ext": "8.3.0",
"web-ext-submit": "7.8.0"
},
"resolutions": {
"lodash": "4.17.21"
},
"scripts": {
"clean": "rm -rf dist/ extension-dist/",
"build": "npm-run-all build:extension -p build:firefox build:chrome",
"start": "run-p 'start:*'",
"stats": "node scripts/stats.mjs",
"test": "run-p 'test:*'",
"test:lib": "yarn workspace @hlidac-shopu/lib test",
"test:api": "ava api.hlidacshopu.cz/**/*.test.mjs",
"test:actors": "ava actors/**/*.test.mjs",
"test:extension": "node scripts/test-extension.mjs",
"lint": "run-p 'lint:*'",
"lint:actors": "biome lint ./actors",
"lint:website": "biome lint ./www.hlidacshopu.cz",
"lint:api": "biome lint ./api.hlidacshopu.cz/src/lambda/**/*.mjs",
"lint:extension": "biome lint ./extension",
"lint:firefox": "web-ext lint --config web-ext-config.firefox.mjs",
"build:extension": "node ./scripts/build-extension.mjs",
"watch:extension": "node ./scripts/watch-extension.mjs",
"build:firefox:prepare": "cp -R ./extension/ ./extension-dist/; cat ./extension/manifest.json | jq 'del(.background)' > ./extension-dist/manifest.json",
"build:firefox:build": "web-ext build --config web-ext-config.firefox.mjs --overwrite-dest",
"build:firefox:rename": "node scripts/rename.mjs dist/*.zip 'hl_da_shop_(.*)' 'firefox-extension%1'",
"build:firefox": "run-s build:firefox:prepare build:firefox:build build:firefox:rename",
"start:firefox": "web-ext run --config web-ext-config.firefox.mjs --browser-console",
"publish:firefox": "web-ext-submit --channel=listed --config web-ext-config.firefox.mjs",
"build:chrome:build": "web-ext build --overwrite-dest",
"build:chrome:rename": "node scripts/rename.mjs dist/*.zip 'hl_da_shop_(.*)' 'chrome-extension%1'",
"build:chrome": "run-s build:chrome:build build:chrome:rename",
"start:chrome": "web-ext run --target=chromium",
"publish:chrome": "chrome-webstore-upload upload --auto-publish --extension-id=plmlonggbfebcjelncogcnclagkmkikk --source=dist/chrome-extension-$(PRINT=manifest ./version.sh).zip",
"start:safari": "open 'apple/App.xcodeproj'",
"start:www.hlidacshopu.cz": "BLENDID_CONFIG_PATH=./www.hlidacshopu.cz/config/ dotenv blendid",
"build:www.hlidacshopu.cz": "BLENDID_CONFIG_PATH=./www.hlidacshopu.cz/config/ dotenv blendid -- build --production",
"outdated": "yarn upgrade-interactive"
},
"workspaces": [
"actors/*",
"extension",
"infrastructure",
"lib",
"workers/*",
"api.hlidacshopu.cz",
"www.hlidacshopu.cz/app-edge-lambda",
"www.hlidacshopu.cz/root-edge-lambda",
"www.hlidacshopu.cz"
]
}