-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.92 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.92 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
100
101
102
{
"name": "planner-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "prisma generate && npm run generate-dmmf",
"generate-dmmf": "tsx prisma/generate-dmmf.ts",
"chromatic": "npx chromatic --project-token=chpt_4c698a912ad6e46"
},
"prisma": {
"seed": "tsx prisma/seed.ts && tsx ./prisma/generate-dmmf.ts"
},
"imports": {
"#lib/prisma": {
"storybook": "./lib/prisma.mock.ts",
"default": "./lib/prisma.ts"
},
"#app/actions/user": {
"storybook": "./app/actions/user.mock.ts",
"default": "./app/actions/user.ts"
},
"#app/actions/events": {
"storybook": "./app/actions/events.mock.ts",
"default": "./app/actions/events.ts"
},
"#*": [
"./*",
"./*.ts",
"./*.tsx"
]
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@radix-ui/react-alert-dialog": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-slot": "^1.1.1",
"@vercel/postgres": "^0.10.0",
"@workos-inc/authkit-nextjs": "^1.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.474.0",
"luxon": "^3.5.0",
"mockdate": "^3.0.5",
"next": "15.1.6",
"react": "19.0.0",
"react-day-picker": "^9.5.1",
"react-dom": "19.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@radix-ui/themes": "^3.2.0",
"@storybook/addon-a11y": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/experimental-addon-test": "^8.5.3",
"@storybook/experimental-nextjs-vite": "^8.5.3",
"@storybook/nextjs": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/test": "^8.5.3",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.10",
"@types/react": "19.0.8",
"@types/react-color": "^3.0.13",
"@types/react-dom": "19.0.3",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-v8": "^3.0.5",
"date-fns": "^4.1.0",
"eslint": "^9.19.0",
"eslint-config-next": "15.1.6",
"eslint-plugin-storybook": "^0.11.2",
"jspdf": "^2.5.2",
"playwright": "^1.50.0",
"postcss": "^8.5.1",
"prisma": "^5.19.1",
"prisma-mock": "^0.10.3",
"react-color": "^2.19.3",
"react-to-print": "^3.0.4",
"storybook": "^8.5.3",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"overrides": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}