-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "fitsphere-hsvdt2",
"version": "1.0.0",
"description": "A web application for fitness enthusiasts to track their progress, set goals, and connect with others.",
"main": "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,json}\"",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/FitSphere-hsvdt2.git"
},
"author": "CosLynxAI",
"license": "MIT",
"bugs": {
"url": "https://github.com/coslynx/FitSphere-hsvdt2/issues"
},
"homepage": "https://github.com/coslynx/FitSphere-hsvdt2#readme",
"dependencies": {
"@prisma/client": "5.19.1",
"@sentry/nextjs": "8.28.0",
"@sentry/tracing": "7.114.0",
"axios": "1.7.7",
"chart.js": "4.4.4",
"express": "4.19.2",
"next": "14.2.8",
"next-auth": "4.24.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.1",
"tailwindcss": "3.4.10",
"zustand": "4.5.5"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"react-testing-library": "^8.0.1",
"typescript": "^5.3.2"
}
}