-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "random-chinchilla-api",
"version": "2.0.0",
"description": "API for fetching random chinchilla images from Wikimedia Commons and Pixabay. Built with Next.js, TypeScript, and Cloudinary.",
"keywords": [
"chinchilla",
"api",
"random",
"images",
"nextjs",
"typescript",
"cloudinary",
"vercel",
"wikimedia",
"pixabay",
"serverless",
"webp",
"animals",
"rodent"
],
"private": true,
"author": " Pavel Kuzyakin <pavel@kuzyak.in> (kuzyak.in)",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"upload": "tsx scripts/upload-to-cloudinary.ts",
"parse-pixabay": "node scripts/parse-pixabay.js",
"process-pixabay": "tsx scripts/process-pixabay.ts"
},
"dependencies": {
"@vercel/og": "^0.8.6",
"cloudinary": "^2.5.1",
"next": "^15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@next/eslint-plugin-next": "^16.1.4",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"autoprefixer": "^10.4.20",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}