-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
85 lines (85 loc) · 2.9 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "limber-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:NullVoxPopuli/limber.git"
},
"author": "NullVoxPopuli",
"scripts": {
"build": "turbo build --filter=limber^... --filter=tutorial^... --concurrency $(nproc --all)",
"dev": "node ./dev/index.js",
"lint": "turbo _:lint --concurrency $(nproc --all)",
"lint:fix": "turbo _:lint:fix --concurrency $(nproc --all)",
"prepare": "pnpm build",
"start": "pnpm build && concurrently 'npm:start:tutorial' 'npm:start:repl' 'npm:start:styles' --names 'tutarial,repl,tailwind'",
"start:repl": "pnpm --filter=limber start",
"start:styles": "pnpm --filter=limber-styles start",
"start:tutorial": "pnpm --filter=tutorial start"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@glint/core": "1.4.1-unstable.ff9ea6c",
"@nullvoxpopuli/eslint-configs": "^4.0.0",
"concurrently": "^9.0.1",
"dev-tools": "workspace:*",
"eslint": "^8.55.0",
"prettier": "^3.3.3",
"prettier-plugin-ember-template-tag": "2.0.2",
"release-plan": "^0.9.2",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 16"
},
"volta": {
"node": "22.9.0",
"pnpm": "9.12.0"
},
"pnpm": {
"overrides": {
"@nullvoxpopuli/eslint-configs": "^4.0.0",
"@glimmer/component": "^2.0.0",
"ember-element-helper": "^0.8.5",
"ember-auto-import": "^2.9.0",
"ember-repl": "workspace:*",
"ember-source": ">= 6.0.1",
"webpack": ">= 5.92.0",
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"assert": "npm:@nolyfill/assert@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"json-stable-stringify": "npm:@nolyfill/json-stable-stringify@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.groupby": "npm:@nolyfill/object.groupby@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"string.prototype.trimend": "npm:@nolyfill/string.prototype.trimend@^1"
},
"allowedDeprecatedVersions": {
"source-map-url": "^0.3.0",
"core-js": "^2.0.0"
},
"peerDependencyRules": {
"allowAny": [
"@glimmer/component",
"ember-modifier",
"typescript",
"ember-source"
],
"ignoreMissing": [
"rollup",
"rsvp"
]
},
"patchedDependencies": {
"browserslist-generator": "patches/browserslist-generator.patch"
}
}
}