-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.51 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.51 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
{
"name": "code-mage",
"description": "Code Mage — Code Your Magic. Personal brand site by Muhammad Hammad Faisal.",
"author": {
"email": "hammadfaisal178@gmail.com",
"name": "Muhammad Hammad Faisal",
"url": "https://m-hammad-faisal.github.io/"
},
"version": "2.0.0",
"private": true,
"license": "MIT",
"homepage": "https://code-mage.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/M-Hammad-Faisal/code-mage.git"
},
"keywords": [
"code-mage",
"python",
"test-automation",
"nextjs",
"supabase",
"blog"
],
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"preview": "next build --turbopack && next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --no-editorconfig --ignore-unknown .",
"format:check": "prettier --check --no-editorconfig --ignore-unknown .",
"type-check": "tsc --noEmit",
"lighthouse": "npx lhci autorun",
"prepare": "husky"
},
"dependencies": {
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.99.3",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"framer-motion": "^12.38.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.577.0",
"next": "^16.2.0",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-syntax-highlighter": "^16.1.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@eslint/eslintrc": "^3.3.5",
"@lhci/cli": "^0.15.1",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9.30.0",
"eslint-config-next": "^16.2.0",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,mjs,cjs}": [
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}