-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.56 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
112
{
"name": "taskleafy",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"commit": "cz",
"prepare": "husky",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:format": "prisma format",
"prisma:migrate": "dotenv -e .env.local -- prisma migrate dev",
"nextui:add": "nextui add"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@hello-pangea/dnd": "^16.6.0",
"@hookform/resolvers": "^3.9.0",
"@internationalized/date": "^3.5.5",
"@nextui-org/avatar": "^2.0.32",
"@nextui-org/button": "^2.0.37",
"@nextui-org/calendar": "^2.0.11",
"@nextui-org/card": "^2.0.33",
"@nextui-org/checkbox": "^2.1.4",
"@nextui-org/date-picker": "^2.1.6",
"@nextui-org/dropdown": "^2.1.29",
"@nextui-org/input": "^2.2.4",
"@nextui-org/modal": "^2.0.39",
"@nextui-org/navbar": "^2.0.36",
"@nextui-org/popover": "^2.1.27",
"@nextui-org/system": "^2.2.5",
"@nextui-org/theme": "^2.2.9",
"@prisma/client": "^5.18.0",
"@t3-oss/env-nextjs": "^0.11.0",
"@tanstack/react-query": "^5.51.23",
"framer-motion": "^11.3.24",
"jiti": "^1.21.6",
"mobx": "^6.13.1",
"mobx-react-lite": "^4.0.7",
"next": "^14.2.5",
"next-auth": "^5.0.0-beta.20",
"react": "^18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-icons": "^5.2.1",
"type-fest": "^4.24.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@next/eslint-plugin-next": "14.2.5",
"@tanstack/eslint-plugin-query": "^5.51.15",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.6.0",
"@types/node": "^20.14.14",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"commitizen": "^4.3.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-next": "15.0.0-rc.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.3.26",
"happy-dom": "^15.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"vitest-mock-extended": "^2.0.0"
}
}