-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.31 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.31 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
{
"name": "meshos-v3",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:reset": "supabase db reset",
"db:generate-types": "supabase gen types typescript --project-id YOUR_PROJECT_ID > src/types/supabase.ts",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:habits": "vitest --run src/test/unit/habit-*.test.ts src/test/integration/*habits*.test.ts src/test/e2e/habit-*.test.ts",
"test:habits:unit": "vitest --run src/test/unit/habit-*.test.ts src/test/unit/streak-*.test.ts",
"test:habits:integration": "vitest --run src/test/integration/*habits*.test.ts src/test/integration/enhanced-logging*.test.ts src/test/integration/analytics-*.test.ts src/test/integration/mobile-*.test.ts",
"test:habits:e2e": "vitest --run src/test/e2e/habit-*.test.ts",
"test:habits:performance": "vitest --run src/test/performance/habits-*.test.ts",
"test:habits:all": "vitest --run src/test/unit/habit-*.test.ts src/test/unit/streak-*.test.ts src/test/integration/*habits*.test.ts src/test/integration/enhanced-logging*.test.ts src/test/integration/analytics-*.test.ts src/test/integration/mobile-*.test.ts src/test/e2e/habit-*.test.ts src/test/performance/habits-*.test.ts",
"test:coverage": "vitest --run --coverage"
},
"dependencies": {
"@astrojs/react": "^4.3.0",
"@astrojs/tailwind": "^6.0.2",
"@astrojs/vercel": "^8.1.5",
"@google/generative-ai": "^0.21.0",
"@langchain/community": "^0.3.48",
"@langchain/core": "^0.3.62",
"@langchain/google-genai": "^0.1.12",
"@langchain/langgraph": "^0.2.74",
"@privy-io/react-auth": "^2.21.4",
"@privy-io/server-auth": "^1.31.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.10",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"buffer": "^6.0.3",
"canvas-confetti": "^1.9.3",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"langchain": "^0.3.29",
"lucide-react": "^0.513.0",
"papaparse": "^5.5.3",
"postgres": "^3.4.7",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"recharts": "^2.15.3",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^3.4.17",
"uuid": "^12.0.0",
"zod": "^3.25.74"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/dotenv": "^6.1.1",
"@types/node": "^22.15.29",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/ui": "^3.2.4",
"astro": "^5.0.0",
"dotenv": "^16.5.0",
"fast-check": "^3.23.2",
"happy-dom": "^18.0.1",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"supabase": "^2.39.2",
"vitest": "^3.2.4"
}
}