-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.22 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.22 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
{
"name": "starter-with-lint",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "[ -n \"$SKIP_HUSKY\" ] || node .husky/install.mjs",
"commit": "commitizen"
},
"dependencies": {
"@base-ui-components/react": "^1.0.0-beta.1",
"@conform-to/react": "^1.8.2",
"@conform-to/zod": "^1.8.2",
"@hookform/resolvers": "^5.2.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"iron-session": "^8.0.4",
"lodash-es": "^4.17.21",
"lucide-react": "^0.525.0",
"next": "15.4.4",
"next-auth": "^5.0.0-beta.29",
"next-themes": "^0.4.6",
"openid-client": "^6.6.2",
"radix-ui": "^1.4.2",
"react": "19.1.0",
"react-day-picker": "^9.8.1",
"react-dom": "19.1.0",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.61.1",
"recharts": "^2.15.3",
"sharp": "^0.34.3",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"typesense": "^2.0.3",
"uuid": "^11.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"zod": "^4.0.10"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/format": "^19.8.1",
"@next/eslint-plugin-next": "^15.4.4",
"@tabler/icons-react": "^3.34.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.3.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8",
"autoprefixer": "10.4.21",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.4.0",
"eslint": "9.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "15.4.4",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.21.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"match-sorter": "^8.1.0",
"postcss": "8.5.6",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "4.1.11",
"tailwindcss-animated": "^2.0.0",
"tailwindcss-radix": "^4.0.2",
"typescript": "5.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}