-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "fittrack-mvp",
"version": "1.0.0",
"description": "FitTrack MVP - A web-based fitness tracker application.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.ts,.tsx",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/FitTrack-MVP-Web-App.git"
},
"author": "CosLynxAI",
"license": "MIT",
"bugs": {
"url": "https://github.com/coslynx/FitTrack-MVP-Web-App/issues"
},
"homepage": "https://github.com/coslynx/FitTrack-MVP-Web-App#readme",
"dependencies": {
"@sentry/browser": "8.28.0",
"@sentry/next": "8.28.0",
"chart.js": "4.4.4",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.19.2",
"jest": "29.7.0",
"next": "14.2.8",
"next-auth": "4.24.7",
"prisma": "5.19.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.10",
"zustand": "4.5.5"
},
"devDependencies": {
"@testing-library/react": "16.0.1",
"autoprefixer": "10.4.20",
"cypress": "13.14.2",
"eslint": "9.10.0",
"postcss": "8.4.45",
"prettier": "3.3.3",
"typescript": "^5.2.2"
}
}