-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 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
{
"name": "gif",
"version": "1.0.0",
"description": "UI for searching gifs using Klipy",
"keywords": [
"gif",
"search",
"klipy",
"ui"
],
"homepage": "https://github.com/crudh/gif",
"bugs": {
"url": "https://github.com/crudh/gif/issues"
},
"author": {
"name": "Christian Rudh",
"email": "christian@rudh.se"
},
"repository": {
"type": "git",
"url": "https://github.com/crudh/gif.git"
},
"license": "Apache-2.0",
"scripts": {
"dev": "next dev --experimental-https",
"build": "pnpm types:gen && next build",
"start": "next start",
"check": "pnpm types:check && pnpm lint:check && pnpm format:check",
"types:check": "tsc --noEmit",
"types:gen": "next typegen",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test:browser": "pnpm build && playwright test",
"test:browser:ci": "playwright test",
"test:browser:ui": "playwright test --ui",
"test:browser:install": "playwright install --with-deps --only-shell"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@vercel/analytics": "^1.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^24.10.12",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"msw": "^2.12.10",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
}