-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "fitness-tracker-platform-mvp",
"version": "1.0.0",
"description": "A web application to track your fitness goals and share progress with friends.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prisma:generate": "prisma generate",
"prisma:push": "prisma push",
"prisma:studio": "npx prisma studio",
"prisma:db:push": "npx prisma db push",
"docker:build": "docker build -t fitness-tracker-mvp .",
"docker:run": "docker run -p 3000:3000 fitness-tracker-mvp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/Fitness-Tracker-Platform-MVP.git"
},
"author": "CosLynx",
"license": "GNU AGPLv3",
"bugs": {
"url": "https://github.com/coslynx/Fitness-Tracker-Platform-MVP/issues"
},
"homepage": "https://github.com/coslynx/Fitness-Tracker-Platform-MVP#readme",
"dependencies": {
"@prisma/client": "5.19.1",
"@sentry/browser": "8.30.0",
"@sentry/nextjs": "8.30.0",
"axios": "1.7.7",
"express": "4.21.0",
"next": "14.2.11",
"next-auth": "4.24.7",
"prisma": "5.19.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "5.0.1",
"tailwindcss": "3.4.11",
"zustand": "4.5.5"
},
"devDependencies": {
"autoprefixer": "10.4.20",
"cypress": "13.14.2",
"jest": "29.7.0",
"postcss": "8.4.47",
"react-testing-library": "8.0.1",
"typescript": "^5.0.4"
}
}