-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 672 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 672 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
{
"name": "moquerie-mono-repo",
"type": "module",
"version": "0.6.2",
"private": true,
"packageManager": "pnpm@9.7.1",
"description": "",
"engines": {
"node": ">22.0.0"
},
"scripts": {
"lint": "eslint .",
"dev": "pnpm run -r --filter \"./packages/**\" --filter=!@moquerie/app --parallel --stream dev",
"build": "pnpm run -r --filter \"./packages/**\" build",
"release": "pnpm run lint && pnpm run build && sheep release -b main --force"
},
"devDependencies": {
"@akryum/sheep": "^0.5.2",
"@antfu/eslint-config": "^3.11.2",
"eslint": "^9.16.0"
},
"pnpm": {
"overrides": {
"graphql": "^16.8.1"
}
}
}