-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "fitness-tracker-mvp-personalized",
"version": "1.0.0",
"description": "A user-centric platform for personalized fitness tracking and a thriving community",
"main": "src/index.ts",
"types": "src/index.d.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/Fitness-Tracker-MVP-Personalized.git"
},
"author": "CosLynx",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/coslynx/Fitness-Tracker-MVP-Personalized/issues"
},
"homepage": "https://github.com/coslynx/Fitness-Tracker-MVP-Personalized#readme",
"dependencies": {
"@next/font": "14.2.11",
"@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",
"cypress": "13.14.2",
"jest": "29.7.0",
"next": "14.2.11",
"next-auth": "4.24.7",
"postcss": "8.4.45",
"prisma": "5.19.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"tailwindcss": "3.4.11",
"zustand": "4.5.5"
},
"devDependencies": {
"@types/node": "22.5.5",
"@types/react": "18.3.5",
"eslint": "^8.54.0",
"eslint-config-next": "14.2.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.1.6"
}
}