-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.83 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
{
"name": "english-speaking-practice",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"supabase": "supabase",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:status": "supabase status",
"supabase:db:pull": "supabase db pull",
"supabase:db:push": "supabase db push",
"supabase:migration:new": "supabase migration new",
"supabase:functions:new": "supabase functions new",
"supabase:functions:deploy": "supabase functions deploy",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:storybook": "vitest --config vitest.config.storybook.ts --run",
"test:storybook:watch": "vitest --config vitest.config.storybook.ts --watch"
},
"dependencies": {
"@lukemorales/query-key-factory": "^1.3.4",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.107.0",
"@tanstack/react-query": "^5.75.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide": "^1.3.0",
"lucide-react": "^1.17.0",
"next": "^16.2.9",
"openai": "^6.42.0",
"radix-ui": "^1.5.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"reflect-metadata": "^0.2.2",
"server-only": "^0.0.1",
"shadcn": "^4.10.0",
"tailwind-merge": "^3.6.0",
"tsyringe": "^4.8.0",
"tw-animate-css": "^1.4.0",
"zod": "^3.24.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@next/eslint-plugin-next": "^16.2.9",
"@storybook/addon-a11y": "^10.3.3",
"@storybook/addon-mcp": "^0.4.2",
"@storybook/addon-vitest": "^10.3.3",
"@storybook/nextjs-vite": "^10.3.3",
"@tailwindcss/postcss": "^4.1.0",
"@tanstack/react-query-devtools": "^5.75.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.0",
"@types/node": "^22.15.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitest/browser": "^4.0.0",
"@vitest/browser-playwright": "^4.0.0",
"@vitest/runner": "^4.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.0",
"playwright": "^1.52.0",
"prettier": "^3.5.0",
"storybook": "^10.3.3",
"supabase": "^2.105.0",
"tailwindcss": "^4.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.0",
"typescript-eslint": "^8.22.0",
"vitest": "^4.0.0"
}
}