-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.04 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
{
"name": "gym-analytics",
"version": "1.0.0",
"description": "Local-first PWA for fractional muscle volume tracking",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "playwright test",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pineapplestrikesback/gym-analytics.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pineapplestrikesback/gym-analytics/issues"
},
"homepage": "https://github.com/pineapplestrikesback/gym-analytics#readme",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.90.16",
"@vercel/analytics": "^1.6.1",
"autoprefixer": "^10.4.23",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.562.0",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-body-highlighter": "^2.0.5",
"react-dom": "^19.2.3",
"react-router-dom": "^7.12.0",
"recharts": "^3.6.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.4.0",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.16"
}
}