-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 2 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
{
"name": "ember-headless-table",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/CrowdStrike/ember-headless-table.git",
"license": "MIT",
"author": "CrowdStrike UX Team",
"scripts": {
"release": "changeset publish",
"build:docs": "pnpm build:docs-app && pnpm build:docs-api && cp ./docs-api/dist ./docs-app/dist/api -r",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:docs": "pnpm turbo --filter docs-app start",
"start:tests": "pnpm turbo --filter test-app start",
"start:addon": "pnpm --filter ember-headless-table start --no-watch.clearScreen",
"start:docs-api": "pnpm --filter 'docs-api' docs:watch --preserveWatchOutput",
"build": "pnpm turbo build",
"build:docs-app": "pnpm turbo --filter docs-app build",
"build:docs-api": "pnpm turbo --filter docs-api docs:build",
"ci:update": "npx ember-ci-update",
"test": "pnpm turbo --filter test-app test",
"lint": "pnpm turbo lint",
"lint:fix": "pnpm --filter '*' lint:fix"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.0",
"concurrently": "^8.0.0",
"prettier": "^2.8.2",
"turbo": "^1.7.4"
},
"pnpm": {
"overrides": {
"@types/eslint": "^7.0.0",
"@embroider/macros": "1.10.0",
"ember-auto-import": "^2.6.2"
},
"overrides-notes": {
"@types/eslint": "webpack brings in v8, but we use v7",
"ember-auto-import": "ember-qunit is bringing in an ancient version"
},
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"ember-cli-htmlbars"
],
"ignore-notes": {
"webpack": "required by anything that depends on ember-auto-import: solution: convert ember-source & co to v2 addons",
"ember-cli-htmlbars": "required by ember-tracked-storage-polyfill and tracked-built-ins: solution convert to babel plugin?"
}
}
},
"volta": {
"node": "18.17.1",
"pnpm": "7.33.7"
}
}