-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "coding_test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun next dev",
"build": "bun next build",
"start": "bun ext start",
"lint": "bun biome check --apply .",
"test": "bun test ./src/**/*.test.ts",
"format": "biome format --write",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"bun biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.104.0",
"@tanstack/react-query": "^5.100.5",
"axios": "^1.15.2",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.38.0",
"jotai": "^2.19.1",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-day-picker": "^10.0.1",
"react-dom": "19.2.4",
"react-hook-form": "^7.74.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}