-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "nextblogx",
"version": "0.1.1",
"description": "A modern blog platform built with Next.js, TypeScript, and Tailwind CSS",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepublishOnly": "npm run build"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"next": "14.1.0",
"gray-matter": "^4.0.3",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"date-fns": "^3.3.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"@tailwindcss/typography": "^0.5.10",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0"
},
"keywords": [
"nextjs",
"blog",
"markdown",
"typescript",
"tailwindcss",
"react"
],
"author": {
"name": "nembal",
"url": "https://github.com/nembal"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nembal/nextblogx"
},
"bugs": {
"url": "https://github.com/nembal/nextblogx/issues"
},
"homepage": "https://github.com/nembal/nextblogx#readme",
"files": [
"src",
"public",
"next.config.js",
"postcss.config.js",
"tailwind.config.ts",
"tsconfig.json",
"LICENSE",
"README.md"
]
}