-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 818 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nitro-web-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "isDemo=true npm run dev -w packages/example",
"dev:client": "isDemo=true npm run dev:client -w packages/example",
"dev:client-only": "isDemo=true isStatic=true npm run dev:client -w packages/example",
"dev:server": "isDemo=true npm run dev:server -w packages/example",
"build": "isDemo=true isStatic=true npm run build -w packages/example",
"major": "npm run major -w packages/core",
"minor": "npm run minor -w packages/core",
"patch": "npm run patch -w packages/core",
"republish": "npm run republish -w packages/core",
"start": "npm run start -w packages/example",
"types": "npm run types -w packages/core"
},
"engines": {
"node": ">=18 <21"
}
}