-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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,
"repository": {
"type": "git",
"url": "git@github.com:NullVoxPopuli/limber.git"
},
"author": "NullVoxPopuli",
"scripts": {
"build": "turbo build --filter=limber^... --filter=tutorial^...",
"dev": "node ./dev/index.js",
"lint": "turbo _:lint --output-logs errors-only",
"lint:fix": "turbo _:lint:fix --output-logs errors-only",
"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.23.9",
"@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",
"release-plan": "github:embroider-build/release-plan#bbd8d70",
"turbo": "^1.12.2"
},
"packageManager": "pnpm@8.15.3",
"engines": {
"node": ">= 16"
},
"volta": {
"node": "20.11.1",
"pnpm": "8.15.3"
},
"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",
"ember-source": ">= 5.5.0",
"webpack": "5.90.3"
},
"allowedDeprecatedVersions": {
"source-map-url": "^0.3.0",
"core-js": "^2.0.0"
},
"peerDependencyRules": {
"allowAny": [
"ember-modifier",
"typescript",
"ember-source"
],
"ignoreMissing": [
"webpack",
"rollup",
"rsvp"
]
}
}
}