-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.73 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
{
"name": "engarcia",
"version": "1.28.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "bun run scripts/sync-career-data.ts && next build",
"clean": "rm -rf .next",
"dev": "bun run scripts/sync-career-data.ts && next dev",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:report": "eslint . --cache -o ./eslintReport.html -f html",
"start": "next start",
"test": "vitest",
"test:watch": "vitest --watch",
"validate": "bun scripts/validate.mjs"
},
"lint-staged": {
"*.(js|ts|mjs|cjs)?(x)": [
"prettier --write",
"eslint --cache --fix"
],
"*.(md)?(x)": [
"prettier --write"
]
},
"prettier": "@eng618/prettier-config",
"dependencies": {
"@formspree/react": "^3.0.0",
"@gv-tech/design-tokens": "^2.28.0",
"@gv-tech/ui-core": "^2.28.0",
"@gv-tech/ui-web": "^2.28.0",
"@hookform/resolvers": "^5.2.2",
"@openpanel/nextjs": "^1.5.1",
"@supabase/supabase-js": "^2.112.3",
"@tailwindcss/typography": "^0.5.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.37.0",
"gray-matter": "^4.0.3",
"lucide-react": "^1.8.0",
"marked": "^18.0.9",
"next": "16.3.1",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "^7.75.0",
"react-icons": "^5.6.0",
"rehype-pretty-code": "^0.14.5",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.4.3",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eng618/prettier-config": "^2.10.2",
"@gv-tech/eslint-config": "^0.1.15",
"@next/eslint-plugin-next": "^16.3.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.1.2",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/react-is": "^19.2.0",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.8.1",
"eslint-config-next": "16.3.1",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"jsdom": "^29.1.1",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"prop-types": "^15.8.1",
"react-is": "^19.2.8",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"vitest-fetch-mock": "^0.4.5"
},
"packageManager": "bun@1.3.9",
"engines": {
"node": ">=22.x"
},
"overrides": {
"vite": "^8.0.8"
}
}