-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "fit-track-mvp",
"version": "1.0.0",
"description": "A user-friendly fitness tracker MVP built with React, Next.js, and Tailwind CSS.",
"main": "src/index.ts",
"types": "src/index.d.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/**/*.{ts,tsx}",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"test": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"generate": "prisma generate",
"studio": "prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/fit-track-mvp.git"
},
"author": "CosLynxAI",
"license": "MIT",
"bugs": {
"url": "https://github.com/coslynx/fit-track-mvp/issues"
},
"homepage": "https://github.com/coslynx/fit-track-mvp#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@next/font": "^14.1.6",
"@prisma/client": "5.19.1",
"@sentry/nextjs": "8.30.0",
"@sentry/node": "8.30.0",
"@testing-library/react": "16.0.1",
"autoprefixer": "10.4.20",
"chart.js": "^4.3.3",
"cypress": "13.14.2",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "29.7.0",
"next": "14.2.9",
"next-auth": "4.24.7",
"postcss": "8.4.45",
"prisma": "5.19.1",
"react": "18.3.1",
"react-chartjs-2": "^5.1.2",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"tailwindcss": "3.4.10",
"zustand": "4.5.5"
},
"devDependencies": {
"@types/chart.js": "^4.0.15",
"@types/jest": "^29.5.3",
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"@types/react-router-dom": "^5.3.8",
"prettier": "^3.0.3",
"typescript": "^5.1.6"
}
}