forked from NullVoxPopuli/limber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "limber-monorepo",
"private": true,
"author": "NullVoxPopuli",
"scripts": {
"prepare": "pnpm build",
"release": "changeset publish",
"build": "pnpm _turbo build --filter=limber^...",
"lint:fix": "pnpm --filter='*' lint:fix",
"lint": "pnpm _turbo lint",
"typecheck": "pnpm _turbo typecheck",
"start": "pnpm _turbo start --filter=limber",
"_turbo": "pnpm turbo --api='http://127.0.0.1:9080' --token=this-is-not-a-secret --team=foo"
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.19",
"npm": "9.1.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"concurrently": "^7.5.0",
"turbo": "^1.6.3"
},
"packageManager": "pnpm@7.16.1",
"pnpm": {
"overrides": {
"@babel/core": "~7.18.0",
"ember-auto-import": "^2.5.0",
"@ember/render-modifiers": "^2.0.4",
"@types/eslint": "^7.0.0"
},
"allowedDeprecatedVersions": {
"babel-eslint": "^10.0.0",
"source-map-url": "^0.3.0",
"core-js": "^2.0.0"
},
"peerDependencyRules": {
"allowAny": [
"mustache",
"ember-modifier"
],
"ignoreMissing": [
"ember-cli-htmlbars"
]
},
"notes": {
"ember-cli-htmlbars": "peer of ember-template-imports via eslint-plugin-ember",
"mustache": "ember-cli -> testem -> consolidate -> mustache is ancient"
},
"patchedDependencies": {
"ember-on-resize-modifier@1.1.0": "patches/ember-on-resize-modifier@1.1.0.patch",
"ember-container-query@3.0.0": "patches/ember-container-query@3.0.0.patch"
}
}
}