-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 KB
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": "monorepo-root",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/universal-ember/table",
"license": "MIT",
"author": "NullVoxPopuli",
"scripts": {
"build": "pnpm turbo build",
"build:docs": "pnpm build:docs-app && pnpm build:docs-api && cp ./docs-api/dist ./docs-app/dist/api -r",
"build:docs-api": "pnpm turbo --filter docs-api docs:build",
"build:docs-app": "pnpm turbo --filter docs-app build",
"ci:update": "npx ember-ci-update",
"lint": "pnpm turbo lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm --filter @universal-ember/table start --no-watch.clearScreen",
"start:docs": "pnpm turbo --filter docs-app start",
"start:docs-api": "pnpm --filter 'docs-api' docs:watch --preserveWatchOutput",
"start:tests": "pnpm turbo --filter test-app start",
"test": "pnpm turbo --filter test-app test"
},
"devDependencies": {
"@glint/ember-tsc": "^1.1.1",
"concurrently": "^9.2.1",
"prettier": "^3.8.1",
"release-plan": "^0.17.4",
"turbo": "^2.8.10"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": "24.11.1"
},
"volta": {
"node": "24.11.1",
"pnpm": "10.30.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"ember-cli-htmlbars"
]
},
"overrides": {
"kolay": "^5.1.3"
},
"patchedDependencies": {
"ember-try": "patches/ember-try.patch",
"github-changelog": "patches/github-changelog.patch"
}
}
}