-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 KB
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
{
"name": "monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:opennext": "turbo run build --filter @opennextjs/*",
"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": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt --write",
"ts:check": "pnpm -r ts:check",
"code:checks": "pnpm fmt && pnpm lint && pnpm ts:check",
"test": "turbo run test",
"e2e:test": "turbo run e2e:test",
"e2e": "pnpm build && pnpm -r e2e",
"e2e-turbopack": "pnpm build && pnpm -r e2e-turbopack",
"e2e:dev": "pnpm build && pnpm -r e2e:dev",
"install-playwright": "playwright install --with-deps",
"benchmark": "pnpm run --filter benchmarking benchmark",
"postinstall": "pnpm build:opennext"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@playwright/test": "catalog:",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"pkg-pr-new": "^0.0.60",
"turbo": "1.10.12"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
}
}