-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "fitness-tracker",
"version": "1.0.0",
"description": "A web application for fitness enthusiasts to track progress, set personalized goals, and connect with a supportive community.",
"main": "src/index.tsx",
"types": "src/index.d.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"test": "jest",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/fitness-tracker.git"
},
"bugs": {
"url": "https://github.com/your-username/fitness-tracker/issues"
},
"homepage": "https://github.com/your-username/fitness-tracker#readme",
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"next": "15.0.3",
"axios": "1.7.7",
"bcrypt": "5.1.1",
"react-router-dom": "6.28.0",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"material-ui": "0.20.2",
"ioredis": "5.4.1"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-standard": "^17.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"jest": "^29.6.4",
"@types/bcrypt": "^5.0.0",
"@types/ioredis": "^5.3.0",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"babel-jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}