-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.04 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
{
"name": "fitness-tracker-community-mvp",
"version": "1.0.0",
"description": "Web application MVP for fitness enthusiasts to set, track, and share fitness goals.",
"main": "pages/_app.jsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"prisma:push": "prisma push",
"prisma:db:push": "prisma db push",
"prisma:db:push-reset": "prisma db push --reset",
"prisma:db:push-force-reset": "prisma db push --force-reset",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:migrate:status": "prisma migrate status",
"prisma:generate:client": "prisma generate --client",
"prisma:init": "npx prisma init --datasource-provider postgresql",
"prisma:seed": "npx prisma db seed",
"seed": "ts-node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spectra-ai-codegen/fitness-tracker-community-mvp.git"
},
"author": "Spectra.codes",
"license": "AGPL-3.0",
"dependencies": {
"@prisma/client": "^4.11.0",
"autoprefixer": "^10.4.12",
"chart.js": "^4.2.1",
"express": "^4.18.2",
"next": "^14.0.0",
"next-auth": "^4.18.2",
"postcss": "^8.4.23",
"prisma": "^4.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.0",
"zustand": "^4.3.0"
},
"devDependencies": {
"@sentry/browser": "^7.34.0",
"@sentry/nextjs": "^7.34.0",
"@types/express": "^4.17.13",
"@types/node": "^18.11.10",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.40.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"postcss-preset-env": "^8.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}