-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.94 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.94 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
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
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cardstack/boxel"
},
"scripts": {
"build:boxel-host": "pnpm run build-common-deps && cd packages/host && NODE_OPTIONS='--max_old_space_size=8192' pnpm build:production",
"build-common-deps": "cd packages/boxel-icons && pnpm build && cd ../.. && cd packages/boxel-ui/addon && pnpm build && cd ../../..",
"ci:failures": "node ./scripts/ci-failures.js",
"clear-caches": "find . -name 'node_modules' -type d -prune -exec rm -rf {} \\; && rm -rf $TMPDIR/embroider",
"deploy:boxel-host": "pnpm run build-common-deps && cd packages/host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy",
"deploy:boxel-host:preview-staging": "pnpm run build-common-deps && cd packages/host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy s3-preview-staging --verbose",
"deploy:boxel-host:preview-production": "pnpm run build-common-deps && cd packages/host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy s3-preview-production --verbose",
"deploy:boxel-ui": "pnpm run build-common-deps && cd packages/boxel-ui/test-app && pnpm exec ember deploy",
"deploy:boxel-ui:preview-staging": "pnpm run build-common-deps && cd packages/boxel-ui/test-app && pnpm exec ember deploy s3-preview-staging --verbose",
"lint": "pnpm run --filter './packages/**' --if-present -r lint",
"lint:fix": "pnpm run --filter './packages/**' --if-present -r lint:fix",
"openrouter:sync": "OPENROUTER_REALM_URL=${OPENROUTER_REALM_URL:-http://localhost:4201/openrouter/} pnpm --filter @cardstack/realm-server sync-openrouter-models",
"prepare-worktree-types": "pnpm --filter @cardstack/boxel-icons build && pnpm --filter @cardstack/boxel-ui build:types"
},
"devDependencies": {
"@actions/core": "catalog:",
"@actions/github": "catalog:",
"@babel/core": "catalog:",
"@babel/parser": "catalog:",
"@babel/traverse": "catalog:",
"@glimmer/component": "catalog:",
"@glimmer/syntax": "^0.95.0",
"@glimmer/tracking": "^1.1.2",
"@playwright/test": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"ember-cli-htmlbars": "^6.3.0",
"ember-resources": "catalog:",
"ember-source": "catalog:",
"ember-template-imports": "^4.1.1",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-prefer-let": "catalog:",
"eslint-plugin-prettier": "catalog:",
"prettier": "catalog:",
"prettier-plugin-ember-template-tag": "catalog:",
"typescript": "catalog:",
"@glint/ember-tsc": "catalog:"
},
"engines": {
"pnpm": "^11"
},
"dependencies": {
"matrix-js-sdk": "38.3.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.13.1"
}
}
}