-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
{
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:universal-ember/preem.git"
},
"license": "MIT",
"author": "",
"scripts": {
"_start:docs": "pnpm --filter docs-app start",
"_start:package": "pnpm --filter 'ember-primitives' start --no-watch.clearScreen",
"_start:tests": "pnpm --filter test-app start",
"build": "turbo run build --output-logs errors-only",
"lint": "turbo run _:lint --output-logs errors-only",
"lint:fix": "turbo run _:lint:fix --output-logs errors-only",
"start": "pnpm build; concurrently 'npm:_start:*' --prefix ' ' --restart-after 5000 --restart-tries -1",
"test": "turbo run test --output-logs errors-only"
},
"devDependencies": {
"@glint/core": "^1.5.0",
"@nullvoxpopuli/dev": "workspace:*",
"concurrently": "^9.1.2",
"prettier": "^3.4.2",
"prettier-plugin-ember-template-tag": "^2.0.4",
"release-plan": "^0.11.0",
"turbo": "^2.3.3",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 22.11.x"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"typescript",
"ember-source",
"@glimmer/compiler",
"@glimmer/syntax"
],
"ignoreMissing": [
"webpack",
"rsvp"
]
},
"overrides": {
"@glimmer/interfaces": "^0.84.2",
"@glimmer/validator": "^0.84.2",
"ember-async-data": "1.0.1",
"ember-cli-babel": "^8.2.0",
"ember-compatibility-helpers": "1.2.7"
},
"packageExtensions": {
"ember-headless-form": {
"dependencies": {
"ember-async-data": "^1.0.1",
"ember-cached-decorator-polyfill": "*"
}
},
"ember-qunit": {
"peerDependencies": {
"@ember/test-helpers": "^2.7.0 || >= 3.0.0"
}
}
}
}
}