forked from shuding/nextra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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
62
63
64
{
"private": true,
"scripts": {
"build": "turbo run build:tailwind build --filter=./packages/\\*",
"types:check": "turbo run types:check",
"lint": "eslint --cache --ignore-path .gitignore --max-warnings 0 .",
"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...",
"build:core": "pnpm run build --filter=nextra",
"build:theme-blog": "pnpm run build --filter=nextra-theme-blog",
"build:theme-docs": "pnpm run build --filter=nextra-theme-docs",
"build:all": "turbo run build:tailwind build",
"version": "changeset version",
"release": "changeset publish",
"test": "turbo run test",
"clean": "turbo run clean",
"format": "turbo run format"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@edge-runtime/vm": "2.0.3",
"@next/eslint-plugin-next": "13.1.6",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tailwindcss": "3.8.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unicorn": "45.0.2",
"prettier": "2.8.3",
"prettier-plugin-tailwindcss": "0.2.2",
"rimraf": "4.1.2",
"tsup": "6.5.0",
"turbo": "1.7.0",
"typescript": "4.9.5"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"vitest": "^0.27.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@mdx-js/react": "^2.2.1",
"next-themes": "^0.2.1",
"next": "^13.1.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"autoprefixer": "^10.4.13",
"tailwindcss": "^3.2.4",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.8",
"tsup": "^6.5.0",
"concurrently": "^7.3.0",
"postcss-import": "^14.1.0"
}
}
}