-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
61 lines (61 loc) · 2.32 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
52
53
54
55
56
57
58
59
60
61
{
"name": "nextra-monorepo",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build:tailwind build --filter=./packages/\\*",
"build:all": "turbo run build:tailwind build",
"build:core": "pnpm build --filter=nextra",
"build:theme-blog": "pnpm build --filter=nextra-theme-blog",
"build:theme-docs": "pnpm build --filter=nextra-theme-docs",
"clean": "turbo run clean",
"dev:core": "turbo run dev --filter=nextra... --filter=!docs",
"dev:theme-blog": "turbo run dev --filter=example-blog... --filter=!docs",
"dev:theme-docs": "turbo run dev --filter=swr-site... --filter=!docs",
"dev:website": "turbo run dev --filter=docs...",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --cache --ignore-path .gitignore --max-warnings 0 .",
"lint:prettier": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"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.9",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@next/eslint-plugin-next": "15.0.3",
"@rollup/plugin-alias": "^5.1.1",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-tailwindcss": "3.17.3",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-unicorn": "56.0.0",
"prettier": "3.3.3",
"prettier-plugin-pkg": "0.18.1",
"prettier-plugin-tailwindcss": "0.6.8",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"tsx": "^4.19.1",
"turbo": "2.2.3",
"typescript": "5.6.3"
},
"pnpm": {
"overrides": {
"esbuild": "^0.24.0",
"next": "15.0.3"
},
"patchedDependencies": {
"@changesets/[email protected]": "patches/@changesets__assemble-release-plan.patch",
"[email protected]": "patches/eslint-plugin-deprecation.patch",
"[email protected]": "patches/[email protected]"
}
}
}