-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.53 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
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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "unfarely",
"version": "0.1.0",
"private": true,
"type": "module",
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"prettier": "prettier --ignore-unknown --write .",
"lint": "eslint . --ext .ts,.tsx,.js,jsx,cjs,mjs",
"lint:fix": "eslint . --ext .ts,.tsx,.js,jsx,cjs,mjs --fix",
"typecheck": "tsc --noEmit",
"clean": "rimraf .next node_modules pnpm-lock.yaml tsconfig.tsbuildinfo",
"prepare": "husky",
"prisma:migrate": "prisma migrate dev",
"prisma:status": "prisma migrate status",
"prisma:deploy": "prisma migrate deploy",
"prisma:validate": "prisma validate",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@clerk/nextjs": "^5.3.1",
"@heroicons/react": "^2.1.5",
"@hookform/resolvers": "^3.9.0",
"@reduxjs/toolkit": "^2.2.7",
"babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601",
"cal-heatmap": "^4.2.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dayjs": "^1.11.12",
"lucide-react": "^0.427.0",
"nanoid": "^5.0.7",
"next": "15.0.0-rc.0",
"prisma": "^5.18.0",
"react": "19.0.0-rc-ab2135c7-20240724",
"react-dom": "19.0.0-rc-ab2135c7-20240724",
"react-hook-form": "^7.52.2",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0",
"sonner": "^1.5.0",
"svix": "^1.29.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"theme-change": "^2.5.0",
"tinykeys": "^2.1.0",
"ts-pattern": "^5.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@clerk/types": "^4.13.1",
"@prisma/client": "5.18.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.14",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/cal-heatmap": "^3.5.39",
"@types/d3": "^7.4.3",
"@types/node": "^22.3.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/ui": "^2.0.5",
"daisyui": "^4.12.10",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.5",
"eslint-config-ts-prefixer": "^1.14.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.8.0",
"happy-dom": "^14.12.3",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rimraf": "^6.0.1",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.10",
"ts-expect": "^1.3.0",
"typescript": "5.5.4",
"vitest": "^2.0.5"
},
"volta": {
"node": "20.16.0"
}
}