-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.62 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.62 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
99
100
101
102
{
"name": "rechron",
"version": "1.0.0",
"description": "Rechron is a free AB loop player to create and share loops from YouTube videos",
"type": "module",
"keywords": [
"youtube",
"video",
"loop",
"ab",
"AB",
"player",
"repeat",
"clip",
"share",
"rechron",
"video sharing",
"clip creation",
"free tool",
"online player"
],
"author": "Dunkelhaiser",
"license": "ISC",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"format": "prettier -uw --cache --ignore-path .gitignore .",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck",
"db:generate": "drizzle-kit generate --config ./src/lib/db/client/drizzle.config.ts && tsx ./src/lib/db/client/migrate.ts",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*": "prettier -uw --cache",
"./src/**/*.{ts,tsx}": "eslint --fix --report-unused-disable-directives --max-warnings 0"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"dependencies": {
"@electric-sql/pglite": "^0.3.15",
"@electric-sql/pglite-react": "^0.2.33",
"@hookform/resolvers": "^5.2.2",
"@paralleldrive/cuid2": "^3.0.6",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-router": "^1.131.50",
"@tanstack/react-start": "^1.131.50",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.562.0",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.35.0",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/umami": "^2.10.1",
"@types/youtube": "^0.1.2",
"@vitejs/plugin-react": "^5.1.2",
"drizzle-kit": "^0.31.8",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postgres": "^3.4.8",
"prettier": "3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite-plugin-pwa": "^1.2.0",
"vite-tsconfig-paths": "^6.0.4"
}
}