-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "fitness-tracker-mvp-personalized-goals",
"version": "1.0.0",
"description": "A user-friendly fitness tracking platform with personalized goal setting and a motivating social 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,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/fitness-tracker-mvp-personalized-goals.git"
},
"author": "CosLynx",
"license": "MIT",
"bugs": {
"url": "https://github.com/coslynx/fitness-tracker-mvp-personalized-goals/issues"
},
"homepage": "https://github.com/coslynx/fitness-tracker-mvp-personalized-goals#readme",
"dependencies": {
"@prisma/client": "5.19.1",
"@sentry/nextjs": "8.28.0",
"@sentry/node": "8.28.0",
"@tailwindcss/forms": "0.5.7",
"axios": "1.7.7",
"chart.js": "4.4.4",
"next": "14.2.8",
"next-auth": "4.24.7",
"prisma": "5.19.1",
"react": "18.3.1",
"react-chartjs-2": "5.2.0",
"react-dom": "18.3.1",
"react-facebook-pixel": "1.0.4",
"react-instagram-embed": "3.0.0",
"react-router-dom": "6.26.1",
"react-twitter-embed": "4.0.4",
"tailwindcss": "3.4.10",
"zustand": "4.5.5",
"validator": "13.12.0"
},
"devDependencies": {
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"eslint": "8.54.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.34.0",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.6.2",
"prettier": "3.1.0",
"typescript": "5.1.6"
}
}