-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "indicamp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:pull": "dotenv -e .env.local prisma db pull",
"db:push": "dotenv -e .env.local prisma db push",
"db:gen": "dotenv -e .env.local prisma generate",
"db:mig": "dotenv -e .env.local prisma migrate dev",
"db:reset": "dotenv -e .env.local prisma migrate reset",
"db:seed": "dotenv -e .env.local prisma db seed",
"db:studio": "dotenv -e .env.local prisma studio",
"lint": "eslint .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "6.1.0",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@types/aos": "^3.0.7",
"aos": "^2.3.4",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^24.2.0",
"lucide-react": "^0.468.0",
"mysql2": "^3.11.5",
"next": "14.2.20",
"next-auth": "5.0.0-beta.25",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"swiper": "^11.2.1",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@next/eslint-plugin-next": "^14.2.14",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcrypt": "^5.0.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"cli": "^1.0.1",
"dotenv": "^16.4.7",
"dotenv-cli": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-next": "14.2.20",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.11.2",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^6.1.0",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^8.18.1"
}
}