-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.77 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.77 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
125
126
127
{
"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.4.0",
"@formkit/auto-animate": "^0.9.0",
"@sentry/nextjs": "^10.56.0",
"@t3-oss/env-nextjs": "0.13.11",
"@trigger.dev/sdk": "^4.4.6",
"@types/canvas-confetti": "^1.9.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"@xyflow/react": "^12.11.0",
"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.40.0",
"groq-sdk": "^1.2.1",
"langfuse": "^3.38.20",
"lucide-react": "^1.17.0",
"next": "^16.2.9",
"next-axiom": "^1.5.0",
"next-pwa": "^5.6.0",
"next-safe-action": "^8.5.4",
"nuqs": "^2.8.9",
"posthog-js": "^1.382.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"reactflow": "^11.11.4",
"recharts": "^3.8.1",
"resend": "^6.12.4",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"tailwind-merge": "^3.6.0",
"use-sound": "^5.0.0",
"workbox-window": "^7.4.1",
"xstate": "^5.32.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@biomejs/biome": "^2.4.16",
"@chromatic-com/storybook": "^5.2.1",
"@next/bundle-analyzer": "^16.2.9",
"@playwright/test": "^1.60.0",
"@storybook/addon-a11y": "^10.4.4",
"@storybook/addon-docs": "^10.4.4",
"@storybook/addon-onboarding": "^10.4.4",
"@storybook/nextjs-vite": "^10.4.4",
"@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.6",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/browser": "^4.1.8",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"eslint": "^10",
"eslint-config-next": "16.2.9",
"eslint-plugin-storybook": "^10.4.4",
"jsdom": "^29.1.1",
"msw": "^2.14.6",
"next-sitemap": "^4.2.3",
"playwright": "^1.60.0",
"prettier": "^3.8.4",
"storybook": "^10.4.4",
"tailwindcss": "^4",
"typescript": "^6",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"description": "Production-grade gamified skill tree learning platform with progression tracking, achievements, and interactive challenges",
"license": "MIT",
"pnpm": {
"overrides": {
"esbuild": ">=0.28.1",
"ajv": ">=8.18.0",
"@eslint/eslintrc>ajv": "^6.14.0",
"eslint>ajv": "^6.14.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": ">=8.0.16",
"fast-uri": ">=3.1.2"
}
}
}