-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.73 KB
/
package.json
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": "nextplate",
"version": "3.1.0",
"description": "Nextjs and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"dev": "yarn generate-json && next dev --turbopack",
"build": "yarn generate-json && next build",
"preview": "next start",
"postbuild": "next-sitemap",
"lint": "next lint",
"format": "prettier -w ./src",
"generate-json": "node scripts/jsonGenerator.js",
"remove-darkmode": "node scripts/removeDarkmode.js && yarn format"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"date-fns": "^3.6.0",
"disqus-react": "^1.1.5",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"marked": "^12.0.2",
"next": "15.1.0",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-gtm-module": "^2.0.11",
"react-icons": "^5.2.1",
"react-lite-youtube-embed": "^2.4.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"swiper": "^11.1.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/marked": "^5.0.2",
"@types/node": "20.12.12",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"autoprefixer": "^10.4.19",
"eslint": "^9.2.0",
"eslint-config-next": "15.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.77.1",
"sharp": "^0.33.3",
"tailwind-bootstrap-grid": "^5.1.0",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5"
},
"resolutions": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
}
}