forked from topmonks/hlidac-shopu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.84 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
{
"name": "hlidac-shopu",
"version": "1.7.0",
"description": "Rozšíření zobrazuje historická data pro největší české eshopy.",
"author": "TopMonks s.r.o. & contributors",
"license": "EPL-2.0",
"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",
"dependencies": {
"@pulumi/aws": "^3.10.1",
"@pulumi/awsx": "^0.22.0",
"@pulumi/pulumi": "^2.12.1",
"@topmonks/pulumi-aws": "^1.5.8",
"date-fns": "^2.16.1",
"ramda": "^0.27.1"
},
"devDependencies": {
"@material/layout-grid": "^7.0.0",
"@material/top-app-bar": "^7.0.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@topmonks/blendid": "git://github.com/topmonks/blendid.git",
"@types/node": "^14.14.6",
"@types/ramda": "^0.27.31",
"@types/whatwg-url": "^8.0.0",
"dotenv-cli": "^4.0.0",
"lit-html": "^1.3.0",
"npm-run-all": "^4.1.5",
"plist": "^3.0.1",
"prettier": "^2.1.2",
"puppeteer": "^5.4.1",
"web-ext": "^5.0.0",
"workbox-window": "^5.1.4"
},
"resolutions": {
"lodash": "npm:[email protected]",
"object-path": "npm:[email protected]"
},
"scripts": {
"clean": "rm -rf dist/ extension-dist/",
"build": "run-p build:*",
"start": "run-p start:*",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "run-p lint:*",
"lint:extension": "web-ext lint",
"lint:firefox": "web-ext lint --config web-ext-config.firefox.js",
"prebuild:firefox": "cp -R extension/ ./extension-dist/; cat ./extension/manifest.json | jq 'del(.background)' > ./extension-dist/manifest.json",
"build:firefox": "web-ext build --config web-ext-config.firefox.js --overwrite-dest",
"postbuild:firefox": "rename -f 's/hl_da_shop_/firefox-extension/g' dist/*.zip",
"start:firefox": "web-ext run --config web-ext-config.firefox.js --browser-console",
"build:chrome": "web-ext build --overwrite-dest",
"postbuild:chrome": "rename -f 's/hl_da_shop_/chrome-extension/g' dist/*.zip",
"start:chrome": "web-ext run --target=chromium",
"build:safari": "node ./apple/osx/bundle.js",
"start:safari": "open './apple/osx/Hlídač Shopů.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",
"version": "./version.sh"
},
"eslintConfig": {
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
]
}
},
"prettier": {
"tabWidth": 2,
"quoteProps": "preserve",
"trailingComma": "none",
"arrowParens": "avoid"
}
}