-
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) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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": "developer-cheat-sheets",
"version": "1.0.0",
"description": "Comprehensive cheat sheets for Python, Django, TypeScript, Next.js, FastAPI, and OpenAI with copy-paste ready code examples",
"author": "Omer Akben <contact@omerakben.com> (https://omerakben.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omerakben/developer-cheat-sheets.git"
},
"homepage": "https://developer-cheat-sheets.vercel.app",
"bugs": {
"url": "https://github.com/omerakben/developer-cheat-sheets/issues"
},
"keywords": [
"cheat-sheets",
"developer-tools",
"python",
"django",
"typescript",
"nextjs",
"fastapi",
"openai",
"code-examples",
"programming",
"web-development"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"fuse.js": "^7.1.0",
"lucide-react": "^0.542.0",
"next": "15.5.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-syntax-highlighter": "^15.6.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.0",
"tailwindcss": "^4",
"typescript": "^5"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=9.0.0"
}
}