-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 830 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 830 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
{
"name": "monorepo",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"openbuild:local": "turbo run openbuild:local",
"openbuild:local:start": "turbo run openbuild:local:start",
"clean": "turbo run clean && rm -rf node_modules pnpm-lock.yaml",
"lint": "biome check",
"lint:fix": "biome check --fix",
"test": "turbo run test",
"e2e:test": "turbo run e2e:test",
"version": "./.changeset/version",
"release": "./.changeset/release"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.29.7",
"pkg-pr-new": "^0.0.60",
"turbo": "1.10.12"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}