-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
78
79
80
81
{
"name": "fitness-tracker-social-sharing",
"version": "1.0.0",
"description": "A web application for fitness enthusiasts to track their goals, progress, and connect with others.",
"main": "src/frontend/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/fitness-tracker-social-sharing.git"
},
"author": "CosLynx",
"license": "GNU AGPLv3",
"bugs": {
"url": "https://github.com/coslynx/fitness-tracker-social-sharing/issues"
},
"homepage": "https://github.com/coslynx/fitness-tracker-social-sharing#readme",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@next/font": "^14.2.15",
"@prisma/client": "^5.20.0",
"@sentry/browser": "^8.34.0",
"@sentry/nextjs": "^8.34.0",
"@supabase/supabase-js": "^2.45.4",
"axios": "^1.7.7",
"chart.js": "^4.4.4",
"formik": "^2.4.6",
"next": "^14.2.15",
"next-auth": "^4.24.8",
"next-pwa": "^5.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"swr": "^2.2.5",
"tailwindcss": "^3.4.13",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/loader": "^9.2.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/react": "^6.5.16",
"@testing-library/react": "^16.0.1",
"@types/node": "^20.8.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"babel-loader": "^9.2.1",
"eslint": "^9.12.0",
"eslint-config-next": "^14.2.15",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}