-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.34 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.34 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
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
86
87
88
89
90
91
{
"name": "limber-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com: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",
"update:babel": "pnpm update --latest --recursive '@babel/*'",
"update:codemirror": "pnpm update --latest --recursive '@codemirror/*' '@lezer/*'",
"update:embroider": "pnpm update --latest --recursive '@embroider/*'",
"update:vite": "pnpm update --latest --recursive '@vitejs/*' 'vite' '@rollup/*' '@rolldown/*' '@oxc-project/*'"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/standalone": "file:babel-standalone.tgz",
"@glint/ember-tsc": "^1.1.0",
"@glint/tsserver-plugin": "^2.1.0",
"@nullvoxpopuli/eslint-configs": "^5.4.0",
"concurrently": "^9.2.1",
"dev-tools": "workspace:*",
"ember-template-lint": "^7.9.3",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"prettier-plugin-ember-template-tag": "2.1.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"release-plan": "^0.17.4",
"turbo": "^2.7.3"
},
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">= 24.12"
},
"volta": {
"node": "24.12.0",
"pnpm": "10.25.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"@glimmer/component",
"ember-modifier",
"typescript",
"ember-source"
],
"ignoreMissing": [
"rollup",
"rsvp"
]
},
"allowedDeprecatedVersions": {
"core-js": "^2.0.0",
"source-map-url": "^0.3.0"
},
"overrides": {
"@babel/standalone": "file:./babel-standalone.tgz",
"@glint/template": "1.7.4",
"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",
"reactiveweb": "1.9.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"
},
"patchedDependencies": {
"browserslist-generator": "patches/browserslist-generator.patch"
},
"_ember-repl": "workspace:*",
"_repl-sdk": "workspace:*"
}
}