-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
94 lines (94 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "the-guild-docs-monorepo",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build --filter=!website",
"build-example": "turbo run build --filter=website",
"build-storybook": "storybook build",
"build:css": "NODE_ENV=production tailwindcss --config tailwind.config.ts --postcss --output packages/components/style.css",
"clean": "pnpm -r exec sh -c 'rm -rf .next .turbo dist out'",
"dev": "turbo run dev --parallel",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --cache --ignore-path .gitignore .",
"lint:prettier": "prettier --cache --check .",
"prebuild-storybook": "pnpm build --filter=@theguild/remark-\\*",
"prepare": "husky install",
"prerelease": "pnpm build",
"prettier": "pnpm lint:prettier --write",
"release": "changeset publish",
"storybook": "storybook dev --port 4000",
"test": "vitest",
"types:check": "turbo run types:check"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@rollup/plugin-alias": "5.1.1",
"@storybook/addon-essentials": "8.4.2",
"@storybook/addon-links": "8.4.2",
"@storybook/core-common": "8.4.2",
"@storybook/nextjs": "8.4.2",
"@storybook/react": "8.4.2",
"@storybook/theming": "8.4.2",
"@svgr/webpack": "8.1.0",
"@theguild/eslint-config": "0.13.2",
"@theguild/prettier-config": "3.0.0",
"@theguild/tailwind-config": "0.6.2",
"@types/jest-image-snapshot": "6.4.0",
"@types/react": "18.3.18",
"@types/react-paginate": "7.1.4",
"@types/webpack": "5.28.5",
"css-loader": "7.1.2",
"eslint": "9.17.0",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-tailwindcss": "3.17.5",
"husky": "9.1.7",
"jest-image-snapshot": "6.4.0",
"lint-staged": "15.3.0",
"next-themes": "0.4.4",
"postcss": "8.4.49",
"postcss-loader": "8.1.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"pretty-quick": "4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "8.4.2",
"storybook-dark-mode": "4.0.2",
"style-loader": "4.0.0",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsconfig-paths-webpack-plugin": "4.2.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"browserslist": [
"> 1%"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,mjs,cjs,ts,tsx,md,json,yml,yaml}": [
"pretty-quick --staged",
"ESLINT_USE_FLAT_CONFIG=false eslint"
]
},
"pnpm": {
"overrides": {
"@theguild/remark-npm2yarn": "workspace:*",
"@theguild/remark-mermaid": "workspace:*",
"esbuild": "0.24.2"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"esbuild-plugin-svgr": "patches/esbuild-plugin-svgr.patch"
}
}
}