-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.01 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.01 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
{
"name": "reworthy",
"version": "0.0.0",
"type": "module",
"engines": {
"pnpm": "10.10.0",
"node": "22.15.0"
},
"scripts": {
"dev": "pnpm vite",
"preview": "pnpm exec vite preview",
"build": "tsc -b && pnpm vite build",
"### lint": "",
"lint": "pnpm run '/^lint:.*/'",
"lint:eslint": "pnpm exec eslint .",
"lint:prettier": "pnpm exec prettier . --check",
"### fix:lint": "",
"fix:lint": "pnpm run '/^fix:lint:.*/'",
"fix:lint:prettier": "pnpm exec prettier . --write",
"fix:lint:eslint": "pnpm exec eslint . --fix",
"### pre-commit:lint": "",
"pre-commit:lint": "pnpm run '/^pre-commit:lint:.*/'",
"pre-commit:lint:prettier": "pnpm exec prettier $(git diff --name-only --diff-filter d --staged | xargs) --check",
"pre-commit:lint:eslint": "pnpm exec eslint $(git diff --name-only --diff-filter d --staged | xargs)"
},
"dependencies": {
"@radix-ui/react-slot": "1.2.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.503.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "3.2.0",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@eslint/js": "9.25.1",
"@types/node": "~22.15.3",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.3",
"@vitejs/plugin-react": "4.4.1",
"autoprefixer": "10.4.21",
"eslint": "9.25.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.14.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "3.4.17",
"typescript": "5.8.3",
"typescript-eslint": "8.31.1",
"vite": "6.3.4"
}
}