This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "devii",
"version": "0.5.0",
"description": "A Medium inspired dev blog starter for Next.js",
"repository": {
"type": "git",
"url": "https://github.com/colinhacks/devii"
},
"author": "Colin McDonnell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/colinhacks/devii/issues"
},
"homepage": "https://github.com/colinhacks/devii",
"tags": [
"blog template",
"react",
"nextjs",
"syntax highlighting",
"static generation"
],
"keywords": [
"blog template",
"react",
"nextjs",
"syntax highlighting",
"static generation"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "next build && next export && firebase deploy --only hosting"
},
"dependencies": {
"fecha": "^4.2.0",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"next": "9.5",
"raw-loader": "^4.0.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^12.2.1",
"rss": "^1.2.2",
"showdown": "^1.9.1"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "14",
"@types/react": "^16.9.35",
"@types/react-syntax-highlighter": "^11.0.5",
"@types/rss": "^0.0.28",
"@types/showdown": "^1.9.3",
"favicons": "^6.1.0",
"typescript": "^3.8.3"
}
}