-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.18 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.18 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
{
"name": "02-repos-browser",
"private": false,
"version": "2.1.0",
"description": "A modern project browser showcasing 30 web development repositories with search, filtering, and animated UI built with React 19, TypeScript, and Tailwind CSS v4.",
"type": "module",
"scripts": {
"production": "npm run build && npm start",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"deploy:gh": "gh-pages -d dist",
"deploy": "npm run build && npm run deploy:gh",
"start": "node server.js",
"test:e2e": "playwright test"
},
"keywords": [
"portfolio",
"projects",
"browser",
"showcase",
"react",
"typescript",
"tailwind",
"framer-motion",
"template"
],
"author": "Kazi Musharraf <github.com/mk-knight23>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mk-knight23/02-repos-browser.git"
},
"homepage": "https://mk-knight23.github.io/02-repos-browser/",
"dependencies": {
"clsx": "^2.1.1",
"express": "^4.22.1",
"framer-motion": "^12.29.2",
"lucide-react": "^0.474.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.1",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"gh-pages": "^6.3.0",
"globals": "^17.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^6.4.1"
}
}