-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 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
61
62
63
{
"name": "devkabir-portfolio",
"private": true,
"version": "1.0.0",
"description": "Dev Kabir's portfolio showcasing WordPress and WooCommerce plugin development.",
"author": {
"name": "Dev Kabir",
"url": "https://www.linkedin.com/in/dev-kabir"
},
"homepage": "https://devkabir.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/devkabir/devkabir.github.io.git"
},
"keywords": [
"dev-kabir",
"portfolio",
"wordpress",
"woocommerce",
"plugin-development",
"react"
],
"type": "module",
"engines": {
"node": ">=26.5.0"
},
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist server.js",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-react": "^5.2.0",
"lucide-react": "^0.546.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"autoprefixer": "^10.5.4",
"esbuild": "^0.25.12",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.8.0",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.65.0",
"vite": "^6.4.3"
}
}