-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "flare-ai",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"supabase": "supabase",
"db:init": "supabase init",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:push": "supabase db push",
"db:pull": "supabase db pull",
"db:link": "supabase link",
"db:migrate": "supabase migration new",
"db:apply": "supabase migration up"
},
"dependencies": {
"@google/genai": "^1.0.0",
"@supabase/supabase-js": "^2.43.4",
"classnames": "^2.5.1",
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zustand": "^5.0.4"
},
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"jsdom": "^25.0.0",
"supabase": "^2.33.5",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vitest": "^2.1.0"
}
}