-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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-goal-setter-app",
"version": "1.0.0",
"description": "A web application for fitness enthusiasts to track progress, set goals, and connect with a community.",
"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}\"",
"test": "jest --coverage",
"migrate": "npx prisma migrate dev",
"generate": "npx prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/fitness-tracker-goal-setter-app.git"
},
"author": "CosLynx",
"license": "MIT",
"dependencies": {
"@next-auth/facebook": "^1.6.0",
"@next-auth/google": "^1.6.0",
"@next-auth/jwt": "^1.7.0",
"@prisma/client": "^5.20.0",
"@testing-library/react": "^16.0.1",
"axios": "^1.7.7",
"chart.js": "^4.4.4",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^14.2.15",
"next-auth": "^4.24.8",
"prisma": "^5.20.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}