-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.67 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.67 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "skill-mapper",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"type-check": "tsc --noEmit",
"prepare": "npx playwright install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"biome:check": "biome check .",
"biome:fix": "biome check . --write",
"biome:format": "biome format . --write",
"test:watch": "vitest",
"analyze": "ANALYZE=true next build",
"postbuild": "next-sitemap"
},
"dependencies": {
"@arcjet/next": "^1.3.1",
"@formkit/auto-animate": "^0.9.0",
"@sentry/nextjs": "^10.46.0",
"@t3-oss/env-nextjs": "0.13.11",
"@trigger.dev/sdk": "^4.4.3",
"@types/canvas-confetti": "^1.9.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"@xyflow/react": "^12.10.2",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.10",
"edge-tts": "^1.0.1",
"elkjs": "^0.11.1",
"framer-motion": "^12.24.7",
"groq-sdk": "^1.1.2",
"langfuse": "^3.38.20",
"lucide-react": "^0.562.0",
"next": "^16.2.3",
"next-axiom": "^1.5.0",
"next-pwa": "^5.6.0",
"next-safe-action": "^8.3.0",
"nuqs": "^2.8.9",
"posthog-js": "^1.364.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"reactflow": "^11.11.4",
"recharts": "^3.8.1",
"resend": "^6.10.0",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"use-sound": "^5.0.0",
"workbox-window": "^7.4.0",
"xstate": "^5.30.0",
"zod": "^4.3.6",
"zustand": "^5.0.9"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@biomejs/biome": "^2.4.9",
"@chromatic-com/storybook": "^5.0.1",
"@next/bundle-analyzer": "^16.2.4",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.2.8",
"@storybook/addon-docs": "^10.2.8",
"@storybook/addon-onboarding": "^10.2.8",
"@storybook/nextjs-vite": "^10.2.8",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@trigger.dev/build": "^4.4.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/browser": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"eslint-plugin-storybook": "^10.2.8",
"jsdom": "^24.0.0",
"msw": "^2.12.14",
"next-sitemap": "^4.2.3",
"playwright": "^1.58.2",
"prettier": "^3.2.5",
"storybook": "^10.2.10",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^7.3.2",
"vitest": "^1.6.0"
},
"description": "Production-grade gamified skill tree learning platform with progression tracking, achievements, and interactive challenges",
"license": "MIT",
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0",
"ajv": ">=8.18.0",
"minimatch": ">=10.2.3",
"rollup": ">=4.59.0",
"storybook": ">=10.2.10",
"serialize-javascript": ">=7.0.5",
"next": ">=16.2.3",
"flatted": ">=3.4.2",
"picomatch": ">=4.0.4",
"brace-expansion": ">=2.0.3",
"lodash": ">=4.18.0",
"cookie": ">=0.7.0",
"systeminformation": ">=5.31.0",
"vite": ">=7.3.2"
}
}
}