-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.72 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
{
"name": "x-bitly",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"build-storybook": "build-storybook",
"coverage": "vitest run --coverage",
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"lint": "biome lint --apply-unsafe .",
"check": "biome check --apply-unsafe .",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test": "vitest",
"test:ui": "vitest --ui"
},
"babel": {
"presets": ["next/babel"]
},
"resolutions": {
"postcss": "8.4.47"
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"@hookform/devtools": "4.3.1",
"@hookform/resolvers": "3.9.1",
"@prisma/client": "6.0.0",
"@tailwindcss/typography": "0.5.15",
"@tanstack/react-query": "5.62.0",
"@tanstack/react-query-devtools": "5.62.0",
"daisyui": "4.12.14",
"fastest-validator": "1.19.0",
"jotai": "2.10.3",
"loglevel": "1.9.2",
"next": "15.0.3",
"next-auth": "4.24.10",
"next-secure-headers": "2.2.0",
"next-validations": "1.0.3",
"quick-lru": "7.0.0",
"react": "18.3.1",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.3.1",
"react-hook-form": "7.53.2",
"yup": "1.4.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@storybook/addon-actions": "8.4.6",
"@storybook/addon-essentials": "8.4.6",
"@storybook/addon-links": "8.4.6",
"@storybook/react": "8.4.6",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/react": "18.3.12",
"@types/react-copy-to-clipboard": "5.0.7",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/ui": "2.1.6",
"autoprefixer": "10.4.20",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"c8": "10.1.2",
"eslint": "9.16.0",
"eslint-config-next": "15.0.3",
"eslint-config-productsway": "1.3.4",
"identity-obj-proxy": "3.0.0",
"jest-fetch-mock": "3.0.3",
"jsdom": "25.0.1",
"msw": "2.6.6",
"postcss": "8.4.49",
"prettier": "3.4.1",
"prisma": "6.0.0",
"sort-package-json": "2.12.0",
"tailwindcss": "3.4.15",
"typescript": "5.7.2",
"vite": "6.0.1",
"vitest": "2.1.6"
},
"msw": {
"workerDirectory": "public"
}
}