-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
30 lines (30 loc) · 814 Bytes
/
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
{
"name": "next-blog",
"productName": "Blog",
"version": "1.0.0",
"description": "A complete app example with a blog using Next.js, MongoDB, Markdown and React Syntax Highlighter.",
"repository": {
"type": "git",
"url": "git+https://github.com/solygambas/next-projects.git"
},
"author": "solygambas",
"license": "MIT",
"bugs": {
"url": "https://github.com/solygambas/next-projects/issues"
},
"homepage": "https://github.com/solygambas/next-projects#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"gray-matter": "^4.0.2",
"mongodb": "^3.6.4",
"next": "10.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-markdown": "^5.0.3",
"react-syntax-highlighter": "^15.4.3"
}
}