-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
{
"name": "fitness-tracker-mvp",
"version": "1.0.0",
"description": "Fitness Tracker MVP - A social fitness platform for personalized goal setting and progress tracking.",
"main": "src/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/**/*.{js,ts,jsx,tsx}",
"format": "prettier --write src/**/*.{js,ts,jsx,tsx}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/Fitness-Tracker-MVP-Social-Community.git"
},
"author": "CosLynx",
"license": "MIT",
"bugs": {
"url": "https://github.com/coslynx/Fitness-Tracker-MVP-Social-Community/issues"
},
"homepage": "https://github.com/coslynx/Fitness-Tracker-MVP-Social-Community#readme",
"dependencies": {
"@next/font": "^14.2.8",
"@prisma/client": "^5.19.1",
"@sentry/nextjs": "^8.28.0",
"@sentry/node": "^8.28.0",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"autoprefixer": "^10.4.20",
"chart.js": "^4.4.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"next": "^14.2.8",
"next-auth": "^4.24.7",
"postcss": "^8.4.45",
"prisma": "^5.19.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-social-sharing": "^3.3.0",
"swagger-ui-express": "^5.0.1",
"tailwindcss": "^3.4.10",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.6.2",
"@types/react-social-sharing": "^3.2.1",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2",
"prettier": "^3.1.0",
"typescript": "^5.1.6"
}
}