-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 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
{
"name": "mossaique",
"private": true,
"version": "2.0.0",
"type": "module",
"description": "Mossaique - Your design mosaic. A curated collection of 300+ premium design tools and resources.",
"homepage": "https://mossaique.com",
"repository": {
"type": "git",
"url": "https://github.com/selfishprimate/mossaique.git"
},
"bugs": {
"url": "https://github.com/selfishprimate/mossaique/issues"
},
"author": "selfishprimate",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run watch-readme\" \"vite\" --names \"parser,vite\" --prefix-colors \"magenta,cyan\"",
"build": "npm run parse-readme && npm run fetch-github-data && npm run generate-sitemap && vite build",
"lint": "eslint .",
"preview": "vite preview",
"parse-readme": "node scripts/parse-readme.js",
"fetch-github-data": "node scripts/fetch-github-data.js",
"fetch-logos": "node scripts/fetch-logos.js",
"watch-readme": "nodemon --watch README.md --exec \"npm run parse-readme\"",
"generate-sitemap": "node scripts/generate-sitemap.js"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"fuse.js": "^7.1.0",
"lucide-react": "^0.552.0",
"motion": "^12.23.24",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-helmet-async": "^2.0.5",
"react-hotkeys-hook": "^5.2.1",
"react-router-dom": "^7.9.5",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.10.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"marked": "^16.4.1",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"terser": "^5.44.1",
"vite": "^7.1.7"
}
}