-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.77 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
{
"name": "nic-gh-page",
"version": "1.0.0",
"type": "module",
"homepage": "https://nicolas.wildflowersranch.com/",
"private": true,
"engines": {
"node": ">=22.22.1"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "oxlint . --type-aware --type-check --deny-warnings --report-unused-disable-directives",
"lint:fix": "oxlint . --type-aware --type-check --fix --deny-warnings --report-unused-disable-directives",
"format": "oxfmt . --write",
"format:check": "oxfmt . --check",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next-themes": "^0.4.6",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/vite": "4.3.2",
"@types/node": "24.13.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"husky": "^9.1.7",
"lint-staged": "17.0.8",
"oxfmt": "0.59.0",
"oxlint": "1.74.0",
"oxlint-tsgolint": "0.24.0",
"tailwindcss": "4.3.2",
"tw-animate-css": "^1.4.0",
"typescript": "7.0.2",
"vite": "8.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --type-aware --type-check --fix --deny-warnings --report-unused-disable-directives",
"oxfmt --write"
],
"*.{js,mjs,cjs,jsx,mts,cts,json,jsonc,json5,css,html,md,mdx,yaml,yml,toml}": [
"oxfmt --write"
]
}
}