-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "FitTrack-MVP",
"version": "1.0.0",
"description": "A web application for fitness goal tracking and achievement sharing.",
"main": "app/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}\"",
"test": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/FitTrack-MVP.git"
},
"author": "CosLynx",
"license": "MIT",
"dependencies": {
"@sentry/nextjs": "^8.28.0",
"@supabase/supabase-js": "^2.45.3",
"next": "^14.2.8",
"next-auth": "^4.24.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.10",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.5.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cypress": "^13.14.2",
"eslint": "^9.10.0",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}