-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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": "A web application for fitness enthusiasts to track their progress and stay motivated.",
"main": "pages/index.tsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,md}\"",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/FitTrack-MVP.git"
},
"author": "CosLynx",
"license": "MIT",
"dependencies": {
"@prisma/client": "5.19.0",
"@sentry/nextjs": "8.27.0",
"autoprefixer": "10.4.20",
"bcrypt": "5.1.1",
"next": "14.2.7",
"next-auth": "4.24.7",
"postcss": "8.4.41",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.10",
"typescript": "5.5.4",
"zustand": "4.5.5"
},
"devDependencies": {
"eslint": "9.9.1",
"eslint-config-next": "14.2.7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}