-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 806 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 806 Bytes
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
{
"private": true,
"packageManager": "pnpm@9.15.4",
"//": {
"@ember/string": [
"This resolution is needed because certain addons in our dependency",
"chain already use v4 but all @ember-data/* packages still use v3. If we",
"do not consolidate this, ember-data will be installed twice which will",
"break the application."
],
"@ember/inflector": [
"This resolution is needed until we update ember-data"
]
},
"resolutions": {
"@ember/string": "4.0.0",
"ember-inflector": "4.0.3"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"graphql": "^15.9.0"
}
}
},
"devDependencies": {
"syncpack": "13.0.4"
},
"scripts": {
"lint-dependencies": "pnpm dedupe --check && pnpm syncpack lint"
}
}