-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.01 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
{
"name": "nextplate",
"version": "5.8.0",
"description": "Nextjs and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",
"packageManager": "pnpm@11.5.1",
"scripts": {
"dev": "concurrently \"node scripts/themeGenerator.mjs --watch\" \"node scripts/jsonGenerator.mjs && next dev\"",
"build": "node scripts/themeGenerator.mjs && node scripts/jsonGenerator.mjs && next build",
"preview": "next start",
"postbuild": "next-sitemap && node scripts/llmsGenerator.mjs",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier -w ./src",
"generate-json": "node scripts/jsonGenerator.mjs",
"generate-llms": "node scripts/llmsGenerator.mjs",
"remove-darkmode": "node scripts/removeDarkmode.mjs && pnpm format"
},
"dependencies": {
"@justinribeiro/lite-youtube": "^1.9.0",
"@next/third-parties": "16.1.6",
"date-fns": "^4.1.0",
"disqus-react": "^1.1.7",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"marked": "^17.0.3",
"next": "16.1.6",
"next-mdx-remote": "^6.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-gtm-module": "^2.0.11",
"react-icons": "^5.5.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"swiper": "^12.1.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "25.3.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"concurrently": "^9.2.1",
"eslint": "^10.0.2",
"eslint-config-next": "16.1.6",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"glob": "^13.0.6",
"node-html-parser": "^7.1.0",
"sharp": "0.34.5",
"tailwind-bootstrap-grid": "^7.0.0",
"tailwindcss": "^4.2.1",
"turndown": "^7.2.4",
"typescript": "5.9.3"
},
"resolutions": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}