-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 2.05 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
{
"name": "rarousnet",
"description": "rarous.net website",
"type": "module",
"private": true,
"main": "gulpfile.js",
"license": "EUPL-1.2",
"browserslist": [
"> 5%",
"last 4 versions"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"ava": "6.2.0",
"broken-link-checker-local": "0.2.1",
"lighthouse": "12.3.0",
"local-web-server": "5.4.0",
"npm-run-all2": "7.0.1",
"pagefind": "1.2.0",
"tap-xunit": "2.4.1",
"wrangler": "3.95.0"
},
"scripts": {
"build:website": "yarn workspace @rarousnet/website build",
"build:index": "pagefind --site ./.gryphoon/dist",
"build": "run-s 'build:*'",
"fmt": "biome format --write",
"generate": "cd generator && clojure -M -m rarousnet.generator ../",
"serve": "ws --compress --http2 -d ./.gryphoon/dist",
"start": "yarn workspace @rarousnet/website start",
"sync": "wrangler pages deploy ./.gryphoon/dist --project=rarousnet --environment=production",
"test:lighthouse:init": "mkdir ./results",
"test:lighthouse:root": "lighthouse https://localhost:8000/ --config-path .lighthouse.json --output json --output html --output-path ./results/root.html --chrome-flags=\"--headless --ignore-certificate-errors\"",
"test:lighthouse:weblog": "lighthouse https://localhost:8000/weblog/ --config-path .lighthouse.json --output json --output html --output-path ./results/weblog.html --chrome-flags=\"--headless --ignore-certificate-errors\"",
"test:lighthouse:vinyly": "lighthouse https://localhost:8000/kolekce/vinyly.html --config-path .lighthouse.json --output json --output html --output-path ./results/kolekce.vinyly.html --chrome-flags=\"--headless --ignore-certificate-errors\"",
"test:lighthouse": "run-s 'test:lighthouse:*'",
"test:ava": "ava | tap-xunit > ./results/ava.xml",
"test:broken-links": "blcl ./.gryphoon/dist -ro"
},
"workspaces": [
"infrastructure",
"scripts",
"workers/*",
"www.rarous.net",
"www.rarous.net/functions",
"cloudflare-pages-plugin-rollbar"
],
"packageManager": "yarn@4.5.3"
}