-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "frontend-learning",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:watch": "nodemon --watch src --ext ts,tsx --exec 'npx eslint --no-cache'",
"preview": "vite preview",
"prettier-format": "prettier --config .prettierrc --write 'src/**/*.ts' 'tests/**/*.ts'",
"test": "vitest --typecheck",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui --coverage --api.host 0.0.0.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.83.0",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@tanstack/react-query": "^5.90.9",
"@tanstack/react-query-devtools": "^5.90.2",
"http-status-codes": "^2.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.5",
"use-immer": "^0.11.0"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.23",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"jsdom": "^27.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supabase": "^2.58.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.10",
"vitest": "^3.2.4"
}
}