-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fitness-tracker-frontend",
"version": "1.0.0",
"description": "Frontend application for the Fitness Tracker MVP",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"test": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/fitness-tracker-frontend.git"
},
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.14",
"@prisma/client": "5.20.0",
"@sentry/browser": "8.33.1",
"@sentry/nextjs": "8.33.1",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"axios": "1.7.7",
"next": "14.2.15",
"next-auth": "4.24.8",
"next-auth/providers/facebook": "4.24.8",
"next-auth/providers/google": "4.24.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"recharts": "2.12.7",
"tailwindcss": "3.4.13",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/react-webpack5": "^6.5.16",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"autoprefixer": "10.4.20",
"babel-jest": "^29.6.5",
"eslint": "9.12.0",
"eslint-config-next": "14.2.15",
"jest": "^29.6.5",
"postcss": "8.4.47",
"prettier": "3.3.3",
"typescript": "^5.1.6",
"vitest": "^0.33.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}