forked from deptagency/dept-engineering-blog-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.07 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
{
"name": "dept-engineering-blog-ui",
"description": "A blog built with Next.js and Ghost CMS",
"version": "1.0.0",
"license": "MIT",
"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",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"compile": "tsc"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@tryghost/admin-api": "^1.6.0",
"@tryghost/content-api": "^1.6.0",
"cheerio": "^1.0.0-rc.10",
"crypto-hash": "^2.0.1",
"dayjs": "^1.10.7",
"fs": "^0.0.1-security",
"lodash.throttle": "^4.1.1",
"next": "^12.2.3",
"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",
"sharp": "^0.29.3",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@emotion/babel-plugin": "^11.9.2",
"@next/bundle-analyzer": "^12.0.10",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@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",
"babel-loader": "^8.2.5",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"eslint": "<8.0.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"next-image-loader": "^2.0.6",
"next-sitemap": "^2.5.20",
"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",
"storybook-addon-next": "^1.6.7",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"resolutions": {
"@types/react": "17.0.39"
}
}