-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 1.51 KB
/
package.json
File metadata and controls
31 lines (30 loc) · 1.51 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
{
"name": "dungeonscripts",
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"catalog:dev": "node ./apps/catalog/src/server.js",
"catalog:start": "node ./apps/catalog/src/server.js",
"catalog:compose:up": "docker compose up --build -d catalog",
"catalog:compose:down": "docker compose down",
"catalog:compose:logs": "docker compose logs -f catalog",
"catalog:docker:build": "docker compose build catalog",
"extension:hint": "echo Load ./apps/extension in Chrome, package artifacts with npm run extension:sync:artifacts, or run npm run extension:run:firefox-android for the Android test flow.",
"extension:build:chrome": "node ./apps/extension/scripts/build-dist.mjs chrome",
"extension:build:firefox": "node ./apps/extension/scripts/build-dist.mjs firefox",
"extension:build:firefox-android": "node ./apps/extension/scripts/build-dist.mjs firefox-android",
"extension:sync:artifacts": "node ./apps/extension/scripts/sync-extension-artifacts.mjs",
"extension:sync:firefox": "node ./apps/extension/scripts/sync-extension-artifacts.mjs",
"extension:lint:firefox-android": "node ./apps/extension/scripts/lint-firefox-android.mjs",
"extension:run:firefox-android": "node ./apps/extension/scripts/run-firefox-android.mjs",
"hooks:install": "git config core.hooksPath .githooks",
"test:e2e:install": "powershell.exe -ExecutionPolicy Bypass -File .\\scripts\\test-install-regression.ps1"
}
}