-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "fitness-tracker",
"version": "1.0.0",
"description": "A web-based fitness tracker for managing goals, progress, and social engagement.",
"main": "src/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"next": "15.0.3",
"@mui/material": "6.1.6",
"@emotion/react": "11.13.3",
"tailwindcss": "3.4.14",
"react": "18.3.1",
"react-dom": "18.3.1",
"localForage": "^1.10.0",
"chart.js": "^4.3.0"
},
"devDependencies": {
"eslint": "9.14.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"prettier": "3.3.3",
"jest": "29.7.0",
"@testing-library/react": "16.0.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/jest": "29.5.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/fitness-tracker.git"
},
"author": "Your Name",
"license": "MIT"
}