-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.86 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.86 KB
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
95
96
97
98
{
"name": "svw-web-app",
"private": true,
"version": "0.1.0",
"description": "SV Walddorf Next.JS App",
"engines": {
"node": "20.x"
},
"packageManager": "pnpm@10.2.1",
"scripts": {
"db:migrate": "drizzle-kit migrate",
"dev": "next dev",
"dev:storybook": "storybook dev -p 6006",
"prebuild": "pnpm run db:migrate",
"build": "next build",
"postbuild": "next-sitemap",
"build:storybook": "storybook build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:chromatic": "chromatic --only-changed --build-script-name=build:storybook"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.6.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/material": "^6.4.3",
"@neondatabase/serverless": "^0.10.4",
"@next/mdx": "16.1.0",
"@tanstack/react-table": "^8.20.6",
"@tanstack/table-core": "^8.20.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.2",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"next": "16.1.0",
"next-sitemap": "^4.2.3",
"node-fetch": "2.7.0",
"nodemailer": "7.0.11",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hotkeys-hook": "^4.6.1",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-links": "^10.1.10",
"@storybook/nextjs": "^10.1.10",
"@storybook/react": "^10.1.10",
"@tailwindcss/postcss": "^4.1.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.17",
"@types/mdx": "^2.0.10",
"@types/node": "^22.15.21",
"@types/node-fetch": "^2.6.12",
"@types/nodemailer": "^6.4.17",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitest/ui": "^3.1.4",
"chromatic": "^13.3.4",
"drizzle-kit": "^0.31.1",
"eslint": "^9.27.0",
"eslint-config-next": "16.1.0",
"eslint-plugin-storybook": "^10.1.10",
"jsdom": "^26.1.0",
"postcss": "^8.5.2",
"prettier": "^3.5.1",
"raw-loader": "^4.0.2",
"storybook": "^10.1.10",
"tailwindcss": "^4.1.7",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
},
"patchedDependencies": {
"unist-util-visit-parents@6.0.1": "patches/unist-util-visit-parents@6.0.1.patch"
}
}
}