-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "fitness-tracker-mvp",
"version": "1.0.0",
"description": "Minimum Viable Product for a fitness tracker web app",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/fitness-tracker-mvp.git"
},
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"eslint": "9.9.1",
"eslint-config-next": "14.2.6",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"next": "14.2.6",
"prettier": "3.3.3",
"typescript": "5.5.4"
},
"dependencies": {
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.18.0",
"autoprefixer": "10.4.20",
"next-auth": "4.24.7",
"postcss": "8.4.41",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.10",
"zustand": "4.5.5"
}
}