-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
51 lines (51 loc) · 2.04 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
{
"name": "nextra-monorepo",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build --filter=./packages/\\*",
"build:all": "turbo run build",
"clean": "rm -rf .turbo && pnpm -r exec sh -c 'rm -rf dist .next .turbo'",
"dev": "turbo run dev --filter=./packages/\\*",
"dev:theme-blog": "turbo run dev --filter=example-blog... --filter=!docs",
"dev:theme-docs": "turbo run dev --filter=example-docs... --filter=!docs",
"dev:theme-i18n": "turbo run dev --filter=swr-site... --filter=!docs",
"dev:website": "turbo run dev --filter=docs...",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint --config packages/eslint-config/src/index.ts --cache --max-warnings 0 .",
"lint:prettier": "prettier --config packages/prettier-config/src/index.js --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"postinstall": "pnpm build",
"prettier": "pnpm lint:prettier --write",
"release": "changeset publish",
"test": "turbo run test",
"types:check": "turbo run types:check",
"version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "2.27.11",
"@rollup/plugin-alias": "5.1.1",
"eslint": "9.18.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"tsx": "4.19.2",
"turbo": "2.3.3",
"typescript": "5.7.3"
},
"pnpm": {
"overrides": {
"postcss": "8.5.1",
"lightningcss": "1.29.1",
"esbuild": "0.24.2",
"vite": "6.0.9",
"next": "15.1.4"
},
"patchedDependencies": {
"[email protected]": "patches/babel-plugin-react-compiler@0.0.0-experimental-22c6e49-20241219.patch",
"[email protected]": "patches/esbuild-plugin-svgr.patch",
"@changesets/[email protected]": "patches/@changesets__assemble-release-plan.patch",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/eslint-plugin-tailwindcss.patch"
}
}
}