-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.55 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
{
"name": "german-mastery",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"dev:turbo": "next dev --turbopack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit",
"test": "vitest",
"prepare": "husky install",
"seed": "tsx scripts/seed.ts",
"seed:dry": "tsx scripts/seed.ts --dry-run",
"content:generate": "tsx scripts/generate-course-content.ts",
"admin:create": "tsx scripts/admin-create-student.ts",
"admin:renew": "tsx scripts/admin-renew-student.ts",
"admin:activate": "tsx scripts/admin-activate-lesson.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@serwist/next": "^9.5.4",
"@serwist/precaching": "^9.5.4",
"@serwist/sw": "^9.5.4",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.94.1",
"@tanstack/react-query": "^5.90.20",
"@types/canvas-confetti": "^1.9.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^5.6.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.31.0",
"howler": "^2.2.4",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"serwist": "^9.5.4",
"tailwind-merge": "^3.4.0",
"vaul": "^1.1.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.3",
"zustand": "^5.0.11"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@storybook/addon-a11y": "^10.2.6",
"@storybook/addon-docs": "^10.2.6",
"@storybook/addon-onboarding": "^10.2.6",
"@storybook/addon-vitest": "^10.2.6",
"@storybook/nextjs-vite": "^10.2.6",
"@tailwindcss/postcss": "^4",
"@types/howler": "^2.2.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.2.6",
"husky": "^8.0.3",
"lint-staged": "^16.2.7",
"playwright": "^1.58.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.2.6",
"tailwindcss": "^4",
"tsx": "^4.20.2",
"typescript": "^5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}