-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "limber-monorepo",
"private": true,
"author": "NullVoxPopuli",
"scripts": {
"dev": "node ./dev/index.js",
"prepare": "pnpm build",
"release": "changeset publish",
"build": "turbo build --filter=limber^... --filter=tutorial^...",
"lint:fix": "turbo _:lint:fix --output-logs errors-only",
"lint": "turbo _:lint --output-logs errors-only",
"start": "pnpm build && concurrently 'npm:start:tutorial' 'npm:start:repl' 'npm:start:styles' --names 'tutarial,repl,tailwind'",
"start:tutorial": "pnpm --filter=tutorial start",
"start:repl": "pnpm --filter=limber start",
"start:styles": "pnpm --filter=limber-styles start"
},
"engines": {
"node": ">= 16"
},
"volta": {
"node": "20.11.1",
"pnpm": "8.15.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"concurrently": "^8.2.2",
"dev-tools": "workspace:*",
"eslint": "^8.55.0",
"pnpm-sync-dependencies-meta-injected": "^0.0.10",
"prettier": "^3.2.5",
"prettier-plugin-ember-template-tag": "^2.0.0",
"turbo": "^1.12.2"
},
"packageManager": "pnpm@8.15.1",
"pnpm": {
"overrides": {
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"@embroider/addon-shim": "1.8.7",
"ember-element-helper": "^0.8.5",
"ember-auto-import": "^2.7.0"
},
"allowedDeprecatedVersions": {
"source-map-url": "^0.3.0",
"core-js": "^2.0.0"
},
"peerDependencyRules": {
"allowAny": [
"ember-modifier",
"typescript",
"ember-source"
],
"ignoreMissing": [
"webpack",
"rollup",
"rsvp"
]
},
"notes": {},
"patchedDependencies": {
"@changesets/assemble-release-plan@6.0.0": "patches/@changesets__assemble-release-plan@6.0.0.patch"
}
}
}