-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "afh",
"version": "1.0.0",
"description": "Artists for Humanity - React TypeScript Application",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next start",
"lint": "next lint",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"app/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"keywords": [
"react",
"typescript",
"nextjs"
],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.4",
"@mui/lab": "^7.0.1-beta.19",
"@mui/material": "^7.3.5",
"@mui/styles": "^6.5.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.1.0",
"@tailwindcss/forms": "^0.5.10",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.9.0",
"lucide-react": "^0.548.0",
"next": "^14.2.35",
"next-auth": "^4.24.10",
"next-cloudinary": "^6.17.5",
"prisma": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-material-ui-carousel": "^3.4.2",
"react-router-dom": "^7.9.3",
"tailwindcss": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^24.7.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.37.0",
"eslint-config-next": "^15.1.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.1",
"globals": "^16.4.0",
"postcss": "^8.5.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
}
}