-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.95 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
{
"name": "ember-headless-form",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/CrowdStrike/ember-headless-form.git",
"license": "MIT",
"author": "CrowdStrike UX Team",
"scripts": {
"release": "changeset publish",
"build:docs": "pnpm turbo build --filter docs-app",
"start": "pnpm --filter './packages/*' build; concurrently 'npm:_start:*' --names '_start:'",
"start:docs-app": "pnpm --filter './packages/*' build; pnpm --stream --parallel --filter docs-app... start",
"start:test-app": "pnpm --filter './packages/*' build; pnpm --stream --parallel --filter test-app... start",
"build": "pnpm turbo build",
"build:packages": "pnpm turbo --filter='./packages/*' build",
"test": "pnpm turbo --filter test-app test",
"test:docs": "pnpm turbo --filter docs-app test",
"lint": "pnpm turbo lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"_start:docs": "pnpm --filter docs-app start",
"_start:tests": "pnpm --filter test-app start",
"_start:packages": "pnpm --stream -parallel --filter './packages/*' start --no-watch.clearScreen"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.0",
"concurrently": "^9.0.0",
"prettier": "^2.8.4",
"turbo": "^1.7.4"
},
"pnpm": {
"overrides": {
"@types/eslint": "^9.0.0"
},
"overrides-notes": {
"@types/eslint": "webpack brings in v8, but we use v7"
},
"peerDependencyRules": {
"ignoreMissing": [
"ember-cli-htmlbars",
"@babel/core"
],
"ignore-notes": {
"ember-cli-htmlbars": "required by ember-tracked-storage-polyfill and tracked-built-ins: solution convert to babel plugin?",
"@babel/core": "See https://github.com/embroider-build/addon-blueprint/pull/77"
}
},
"patchedDependencies": {
"ember-auto-import@2.6.1": "patches/ember-auto-import@2.6.1.patch"
}
},
"packageManager": "pnpm@9.11.0"
}