-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.09 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
{
"name": "naka.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"audit:deps": "npm audit --audit-level=moderate",
"check:all": "npm run type-check && npm run lint && npm run format:check && npm run test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-slot": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.7.0",
"next": "^15.5.14",
"next-intl": "^4.8.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.55.0",
"react-icons": "^5.5.0",
"resend": "^4.2.0",
"tailwind-merge": "^3.0.2",
"tw-animate-css": "^1.2.4",
"zod": "^3.24.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
],
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.17.28",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"cssnano": "^7.1.4",
"eslint": "^9",
"eslint-config-next": "15.2.3",
"husky": "^9.0.11",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.2",
"postcss": "^8.5.3",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^4.0.14",
"typescript": "^5",
"vitest": "^3.2.4"
}
}