-
-
Notifications
You must be signed in to change notification settings - Fork 205
/
package.json
100 lines (100 loc) · 2.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "next-cms-ghost",
"description": "Publish flaring fast blogs with Next.js and Ghost CMS",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"nextjs",
"next.js",
"nextjs-blog",
"nextjs-starter",
"nextjs-example",
"nextjs-starter-ghost",
"nextjs-serverless",
"gatsby-alternative",
"jamify",
"jamify-starter",
"jamify-starter-ghost",
"ghost",
"ghost-cms",
"ghost-theme",
"casper",
"casper-ghost",
"blogging",
"wordpress-alternative",
"static-site",
"static-site-generator",
"lighthouse",
"typescript",
"react"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "cross-env IS_EXPORT=true next build && next export",
"clean": "rm -rf .cache public/images",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"postbuild": "next-sitemap",
"serve": "serve out"
},
"dependencies": {
"@tryghost/content-api": "^1.6.0",
"cheerio": "^1.0.0-rc.10",
"crypto-hash": "^2.0.1",
"dayjs": "^1.10.7",
"disqus-react": "^1.1.2",
"email-validator": "^2.0.4",
"fs": "^0.0.1-security",
"lodash.throttle": "^4.1.1",
"next": "12.0.9",
"nodemailer": "^6.7.2",
"probe-image-size": "^7.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-gist": "^1.2.4",
"react-is": "^17.0.2",
"react-medium-image-zoom": "^4.3.5",
"refractor": "^3.3.1",
"rehype": "^11.0.0",
"rehype-react": "^6.2.1",
"rss": "^1.2.2",
"sanitize-html": "^2.7.0",
"sharp": "^0.29.3",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.9",
"@types/cheerio": "^0.22.31",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.17",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.39",
"@types/refractor": "^3.0.2",
"@types/rss": "^0.0.29",
"@types/sanitize-html": "^2.6.2",
"@types/styled-components": "^5.1.22",
"@types/testing-library__react": "^10.2.0",
"@types/tryghost__content-api": "^1.3.10",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"autoprefixer": "^10.4.2",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"next-image-loader": "^2.0.6",
"next-sitemap": "^2.1.14",
"postcss": "^8.4.6",
"postcss-color-mod-function": "^3.0.3",
"postcss-easy-import": "^3.0.0",
"postcss-preset-env": "^7.3.1",
"prettier": "^2.5.1",
"serve": "^13.0.2",
"typescript": "^4.5.5"
}
}