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
|
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@hoarder/landing",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"clean": "git clean -xdf .next .turbo node_modules",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --check . --ignore-path ../../.gitignore",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"lint:fix": "next lint --fix"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.2",
"@svgr/webpack": "^8.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.330.0",
"next": "14.2.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-select": "^5.8.0",
"sharp": "^0.33.3",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@hoarder/eslint-config": "workspace:^0.2.0",
"@hoarder/prettier-config": "workspace:^0.1.0",
"@hoarder/tailwind-config": "workspace:^0.1.0",
"@hoarder/tsconfig": "workspace:^0.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1"
},
"eslintConfig": {
"root": true,
"extends": [
"@hoarder/eslint-config/base",
"@hoarder/eslint-config/nextjs",
"@hoarder/eslint-config/react"
]
},
"prettier": "@hoarder/prettier-config"
}
|