-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.95 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.95 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
99
{
"name": "svw-web-app",
"private": true,
"version": "0.1.0",
"description": "SV Walddorf Next.JS App",
"engines": {
"node": "20.x"
},
"scripts": {
"db:migrate": "drizzle-kit migrate",
"dev": "next dev --turbopack",
"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.5.0",
"@neondatabase/serverless": "^0.10.4",
"@next/mdx": "15.1.0",
"@react-pdf-viewer/core": "^3.12.0",
"@react-pdf-viewer/default-layout": "^3.12.0",
"@tanstack/react-table": "^8.20.5",
"@tanstack/table-core": "^8.20.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.2",
"gray-matter": "^4.0.3",
"next": "15.1.0",
"next-sitemap": "^4.2.3",
"node-fetch": "2.7.0",
"nodemailer": "^6.9.13",
"pdfjs-dist": "3.11.174",
"react": "19.0.0",
"react-big-calendar": "^1.17.0",
"react-dom": "19.0.0",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/mdx": "^2.0.10",
"@types/node": "^20.9.1",
"@types/node-fetch": "^2.6.12",
"@types/nodemailer": "^6.4.14",
"@types/react": "19.0.1",
"@types/react-big-calendar": "^1.8.8",
"@types/react-dom": "19.0.2",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/ui": "^2.1.8",
"autoprefixer": "^10.4.20",
"chromatic": "^11.20.2",
"drizzle-kit": "^0.30.4",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.0",
"eslint-plugin-storybook": "^0.11.1",
"jsdom": "^25.0.1",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"raw-loader": "^4.0.2",
"storybook": "^8.4.7",
"tailwindcss": "^3.3.5",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
},
"patchedDependencies": {
"unist-util-visit-parents@6.0.1": "patches/unist-util-visit-parents@6.0.1.patch"
}
}
}