forked from TEAM-ISAID/ISAID
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.81 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "mz-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.9.0",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@sentry/nextjs": "^9.33.0",
"apexcharts": "^4.7.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"framer-motion": "^12.18.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.514.0",
"mysql2": "^3.14.1",
"next": "15.3.3",
"react": "^19.0.0",
"react-day-picker": "^9.7.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.2",
"recharts": "^2.15.3",
"sonner": "^2.0.5",
"swiper": "^11.2.8",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.58"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3",
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@storybook/addon-a11y": "^9.0.13",
"@storybook/addon-docs": "^9.0.13",
"@storybook/addon-vitest": "^9.0.13",
"@storybook/nextjs-vite": "^9.0.13",
"@svgr/core": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest-json-schema": "^6.1.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.28.0",
"eslint-config-next": "15.3.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-storybook": "^9.0.13",
"husky": "^9.1.7",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.2",
"jest-json-schema": "^6.1.0",
"lint-staged": "^16.1.0",
"playwright": "^1.53.1",
"postcss": "^8.5.6",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"prisma": "^6.9.0",
"storybook": "^9.0.13",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}