-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.93 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
{
"name": "GymParrot",
"private": false,
"type": "module",
"version": "0.0.5",
"author": "GymParrot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:artemu78/GymParrot.git"
},
"homepage": "https://gymparrot.netlify.app/",
"scripts": {
"dev": "vite --port 3000",
"start": "vite --port 3000",
"build": "vite build && tsc",
"serve": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage --coverage.all",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"check:ci": "biome check src/components/PerformancePanel.tsx src/services/poseFeatures.ts src/services/squatEvaluator.ts src/services/__tests__/poseFeatures.test.ts src/services/__tests__/squatEvaluator.test.ts"
},
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-router": "^1.130.2",
"@tanstack/react-router-devtools": "^1.121.2",
"@tanstack/react-store": "^0.7.0",
"@tanstack/store": "^0.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.476.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.6",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.0.10"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tanstack/router-devtools": "^1.130.2",
"@tanstack/router-vite-plugin": "^1.130.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.1.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.13",
"jsdom": "^26.0.0",
"typescript": "^5.7.2",
"vite": "^6.1.0",
"vitest": "^4.0.13",
"web-vitals": "^4.2.4"
}
}