-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
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
{
"name": "nova-project",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "turbo run dev",
"prod": "turbo run prod",
"build": "turbo run build --concurrency=2",
"check": "turbo run check --concurrency=2",
"deploy": "turbo run deploy --concurrency=2",
"clean": "turbo run clean",
"changelog": "nova utility changelog",
"recipes": "nova utility run-recipes --replace-file",
"postinstall": "node ./scripts/link-nova.mjs"
},
"workspaces": [
"./apps/*",
"./packages/*"
],
"packageManager": "npm@11.11.0",
"engines": {
"node": "^20 || ^22 || ^24"
},
"devDependencies": {
"@cbnventures/nova": "file:./packages/nova",
"chalk": "5.6.2",
"jiti": "2.6.1",
"turbo": "2.9.5",
"typescript": "5.9.3"
},
"overrides": {
"webpack": ">=5.95.0 <5.106.0"
}
}