-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.24 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
{
"name": "augustinmauroy.github.io",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"postbuild": "node ./scripts/postbuild.js",
"start": "next start",
"test:unit": "node --test --import=\"./node-hooks/react.ts\" **/*.test.ts **/*.test.tsx",
"test:watch": "node --run test:unit -- --watch",
"test": "node --run test:unit",
"biome:format": "biome format --write ./",
"biome:lint": "biome lint --write ./",
"biome:ci": "biome ci ./",
"format": "node --run biome:format && node --run biome:lint",
"type-check": "tsc --noEmit",
"storybook": "BUILD_ENV=storybook storybook dev -p 6006 --quiet --no-open",
"storybook:build": "BUILD_ENV=storybook storybook build",
"prepare": "husky"
},
"dependencies": {
"@heroicons/react": "~2.2.0",
"@radix-ui/react-avatar": "~1.1.2",
"@radix-ui/react-dropdown-menu": "~2.1.4",
"classnames": "~2.5.1",
"feed": "~4.2.2",
"geist": "^1.3.1",
"next": "~15.1.5",
"next-intl": "~3.26.0",
"next-mdx-remote": "~5.0.0",
"react": "~19.0.0",
"react-dom": "~19.0.0",
"rehype-autolink-headings": "~7.1.0",
"rehype-mdx-code-props": "~3.0.1",
"rehype-slug": "~6.0.0",
"shiki": "~1.18.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@nodejs-loaders/alias": "~1.1.1",
"@nodejs-loaders/css-module": "~1.0.1",
"@nodejs-loaders/tsx": "~1.0.2",
"@storybook/addon-a11y": "~8.5.0",
"@storybook/addon-essentials": "~8.5.0",
"@storybook/addon-interactions": "~8.5.0",
"@storybook/addon-links": "~8.5.0",
"@storybook/addon-themes": "~8.5.0",
"@storybook/nextjs": "~8.5.0",
"@storybook/react": "~8.5.0",
"@testing-library/dom": "~10.4.0",
"@testing-library/react": "~16.2.0",
"@types/node": "~22.10.7",
"@types/react": "~19.0.7",
"@types/react-dom": "~19.0.3",
"autoprefixer": "~10.4.20",
"global-jsdom": "~26.0.0",
"husky": "~9.1.7",
"jsdom": "~26.0.0",
"lint-staged": "~15.4.1",
"postcss": "~8.4.49",
"storybook": "~8.5.0",
"tailwindcss": "~3.4.17",
"typescript": "~5.7.3"
},
"engines": {
"node": "23.x",
"npm": "10.x"
},
"packageManager": "[email protected]"
}