-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.32 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.32 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "wigxel-nextjs-typescript-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --port 3042",
"build": "next build",
"start": "next start",
"svg:convert": "npx @svgr/cli --icon --typescript --ignore-existing --memo --out-dir ./components/Icons -- public/assets/icons",
"watch": "watch 'clear && npm run -s lint' pages components",
"lint": "biome lint . && tsc --noEmit && echo 'Lint complete.'",
"lint:convex": "bunx tsc --project ./convex/tsconfig.json",
"lint:fix": "eslint --fix . && biome lint --write .",
"format": "npm run format:prettier && npm run format:biome",
"format:prettier": "prettier --write .",
"format:biome": "biome format --no-errors-on-unmatched --write .",
"test": "vitest --watch=false",
"test:watch": "vitest",
"round-check": "npm run lint && npm run format && npm run test && npm run build",
"test:coverage": "vitest run --coverage --watch=false",
"prepare": "husky"
},
"dependencies": {
"@clerk/nextjs": "^7.0.5",
"@clerk/themes": "^2.4.57",
"@hookform/resolvers": "^3.10.0",
"@internationalized/date": "^3.12.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@react-aria/datepicker": "^3.16.1",
"@react-stately/datepicker": "^3.16.1",
"@remixicon/react": "^4.9.0",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"@tremor/react": "^3.18.7",
"@wigxel/react-components": "^1.2.7",
"@wigxel/utils": "^1.0.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"consola": "^3.4.2",
"convex": "1.35.1",
"convex-helpers": "^0.1.114",
"date-fns": "^4.1.0",
"effect": "^3.19.19",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"hooks-ts": "^0.12.0",
"lodash-es": "^4.18.1",
"lucide-react": "^0.577.0",
"motion": "^12.9.2",
"next": "16.0.10",
"next-themes": "^0.4.6",
"ramda": "^0.27.2",
"react": "19.1.0",
"react-day-picker": "8.10.1",
"react-dom": "19.1.0",
"react-hook-form": "^7.71.2",
"react-paystack": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3",
"zod": "^4.3.6",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@eslint/eslintrc": "^3.3.1",
"@svgr/cli": "^6.5.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^17.0.45",
"@types/react": "19.1.2",
"@vitejs/plugin-react-swc": "^3.9.0",
"@vitest/coverage-v8": "^2.1.9",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"eslint": "^9.25.1",
"eslint-config-next": "15.3.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sort-destructure-keys": "^1.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.1",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^8.5.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.16",
"watch": "^1.0.2"
},
"keywords": [
"wigxel",
"boilerplate",
"nextjs"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"biome lint --write --staged"
],
"*.{css,html,md,mdx,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "bun@1.3.5",
"bun": {
"overrides": {
"@types/react": "19.1.2"
}
}
}