forked from GavinJoyce/ember-headlessui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.78 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
{
"name": "ember-headlessui-monorepo-root",
"version": "0.0.0",
"private": true,
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"dev": "concurrently 'npm:dev:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"dev:ember": "pnpm --filter test-app run start",
"dev:addon": "echo 'pnpm run --filter ember-headlessui start --no-watch.clearScreen'",
"dev:docs": "echo 'pnpm run --filter docs docs:watch --preserveWatchOutput'",
"build:docs": "pnpm --filter ember-headlessui run build",
"release": "pnpm --filter ember-headlessui run release",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"lint:js": "pnpm --filter '*' lint:js",
"test": "pnpm --filter test-app test:ember"
},
"devDependencies": {
"concurrently": "^7.2.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/eslint": "7.29.0",
"@octokit/core": "^4.0.0",
"lerna-changelog": "^2.0.0"
},
"overrides-notes": {
"@octokit/core": "release-it -> @octokit/rest -> @octokit/plugin-paginate-rest wants @octokit/core v4, but found 3.6. The other way of solving this is to go more experimental / git / pr references: https://github.com/GavinJoyce/ember-headlessui/pull/161 -- the problem is that release-it-lerna-changelog + release-it have incompatible peers",
"@types/eslint": "webpack brings in @types/eslint@8, which breaks our type checking"
},
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core"
],
"ignore-notes": {
"@babel/core": "See bug report + discussion: https://github.com/ember-cli/ember-cli/issues/9933"
}
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}