-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.71 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"version": "0.0.0",
"private": true,
"repository": "",
"license": "MIT",
"author": "",
"scripts": {
"release": "changeset publish",
"build": "turbo run build --output-logs errors-only",
"start": "pnpm build; concurrently 'npm:_start:*' --prefix ' ' --restart-after 5000 --restart-tries -1",
"_start:docs": "pnpm --filter docs-app start",
"_start:tests": "pnpm --filter test-app start",
"_start:package": "pnpm --filter 'ember-primitives' start --no-watch.clearScreen",
"test": "turbo run test --output-logs errors-only",
"lint:fix": "turbo run _:lint:fix --output-logs errors-only",
"lint": "turbo run _:lint --output-logs errors-only"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@glint/core": "^1.1.0",
"@nullvoxpopuli/dev": "workspace:*",
"concurrently": "^8.2.2",
"prettier": "^3.1.0",
"prettier-plugin-ember-template-tag": "^1.1.0",
"turbo": "^1.10.16",
"typescript": "^5.3.2"
},
"engines": {
"node": ">= 18.*",
"yarn": "use pnpm",
"npm": "use pnpm"
},
"volta": {
"node": "20.10.0",
"pnpm": "8.12.0"
},
"pnpm": {
"overrides": {
"@glimmer/validator": "^0.84.2",
"@glimmer/interfaces": "^0.84.2",
"ember-async-data": "1.0.1",
"ember-compatibility-helpers": "1.2.7",
"ember-cli-babel": "^8.2.0",
"@embroider/webpack": "3.2.2-unstable.5010f91",
"@embroider/vite": "0.2.1-unstable.5010f91",
"@embroider/util": "1.12.2-unstable.5010f91",
"@embroider/test-setup": "3.0.4-unstable.5010f91",
"@embroider/shared-internals": "2.5.2-unstable.5010f91",
"@embroider/router": "2.1.7-unstable.5010f91",
"@embroider/reverse-exports": "0.1.1-unstable.5010f91",
"@embroider/macros": "1.13.4-unstable.5010f91",
"@embroider/hbs-loader": "3.0.4-unstable.5010f91",
"@embroider/core": "3.4.3-unstable.5010f91",
"@embroider/compat": "3.4.1-unstable.5010f91",
"@embroider/addon-shim": "1.8.8-unstable.5010f91",
"@embroider/addon-dev": "4.1.3-unstable.5010f91"
},
"patchedDependencies": {
"ember-headless-form@1.0.0-beta.3": "patches/ember-headless-form@1.0.0-beta.3.patch"
},
"packageExtensions": {
"ember-qunit": {
"peerDependencies": {
"@ember/test-helpers": "^2.7.0 || >= 3.0.0"
}
},
"ember-headless-form": {
"dependencies": {
"ember-cached-decorator-polyfill": "*",
"ember-async-data": "^1.0.1"
}
}
},
"peerDependencyRules": {
"allowAny": [
"typescript",
"ember-source",
"@glimmer/compiler",
"@glimmer/syntax"
],
"ignoreMissing": [
"webpack",
"rsvp"
]
}
}
}