-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 3.96 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
{
"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 ../../..",
"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-motion": "cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy",
"deploy:boxel-motion:preview-staging": "cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy s3-preview-staging --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"
},
"pnpm": {
"allowedDeprecatedVersions": {
"babel-eslint": "10.1.0"
},
"overrides": {
"@types/eslint": "8.4.1",
"@embroider/util": "1.13.1",
"@glimmer/tracking>@glimmer/validator": "0.84.3",
"jsesc": "^3.0.0",
"ember-modifier": "^4.1.0",
"prettier": "github:cardstack/prettier#glimmer-style-tag-in-template-support"
},
"peerDependencyRules": {
"allowedVersions": {
"mustache": "3",
"prettier@github:cardstack/prettier#glimmer-style-tag-in-template-support": "3.1.0-dev",
"[email protected]>ember-source": "*"
}
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@types/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@babel/core": "^7.24.3",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@glint/core": "1.3.0",
"@glint/environment-ember-loose": "1.3.0",
"@glint/environment-ember-template-imports": "1.3.0",
"@playwright/test": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"ember-cli-htmlbars": "^6.3.0",
"ember-resources": "^6.5.1",
"ember-source": "~5.4.0",
"ember-template-imports": "^4.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-prettier": "^5.0.0",
"hcl2-parser": "^1.0.3",
"prettier": "^2.7.1",
"prettier-plugin-ember-template-tag": "^1.1.0",
"typescript": "~5.1.6"
},
"engines": {
"pnpm": "^8"
},
"volta": {
"node": "20.11.1",
"pnpm": "8.15.5"
}
}