-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.9 KB
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": "fitness-goal-tracker",
"version": "1.0.0",
"description": "A web application for tracking fitness goals and connecting with a community of like-minded individuals.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"test": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"db:push": "npx prisma db push",
"db:pull": "npx prisma db pull",
"db:generate": "npx prisma generate",
"db:studio": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/fitness-goal-tracker.git"
},
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^4.9.0",
"@sentry/browser": "^7.34.0",
"@sentry/nextjs": "^7.34.0",
"@types/node": "^18.11.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"cypress": "^12.9.0",
"next": "^14.0.0",
"next-auth": "^4.19.1",
"postcss": "^8.4.21",
"prisma": "^4.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.0",
"zustand": "^4.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.38.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"typescript": "^5.0.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}