-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.81 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
{
"name": "calorie-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npx generate-license-file --input package.json --output public/third-party-licenses.txt --overwrite && tsc -b && vite build",
"generate-database-types": "supabase gen types typescript --local > src/types/database.types.ts ; npx eslint --fix src/types/database.types.ts",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@mui/x-date-pickers": "^8.25.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.49.4",
"@tanstack/react-query": "^5.76.1",
"luxon": "^3.6.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.5.1",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@nabla/vite-plugin-eslint": "^2.0.5",
"@stylistic/eslint-plugin": "^4.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/luxon": "^3.6.2",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^4.0.17",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"generate-license-file": "^4.0.0",
"globals": "^16.0.0",
"jsdom": "^27.4.0",
"supabase": "^2.22.12",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1",
"vitest": "^4.0.17"
}
}