-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1018 Bytes
/
package.json
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
{
"name": "fitness-tracker",
"version": "1.0.0",
"description": "A web application for tracking fitness goals and connecting with friends.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/fitness-tracker.git"
},
"author": "Your Name",
"license": "MIT",
"dependencies": {
"next": "15.0.3",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/material": "6.1.6",
"@mui/icons-material": "6.1.6",
"firebase": "11.0.1",
"react-router-dom": "6.28.0"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.12",
"jest": "^29.6.4",
"ts-jest": "^29.7.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/jest": "^29.5.3",
"typescript": "^5.0.4"
}
}