-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.37 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
{
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"postbuild": "node ./scripts/generate-rss.mjs && node ./scripts/generate-sitemap.mjs",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"export": "next export",
"out": "npm run build && npm run export"
},
"dependencies": {
"@tailwindcss/typography": "0.4.1",
"big.js": "6.1.1",
"date-fns": "2.23.0",
"i18next-browser-languagedetector": "6.1.2",
"mdx-bundler": "^6.0.1",
"next": "12.0.1",
"next-i18next": "8.9.0",
"next-themes": "0.0.15",
"react": "17.0.2",
"react-cookie-consent": "6.3.0",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"swr": "0.5.6",
"tailwindcss": "2.2.7",
"unsplash-js": "6.3.0"
},
"devDependencies": {
"autoprefixer": "10.3.1",
"esbuild": "^0.12.20",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"globby": "12.0.0",
"gray-matter": "^4.0.3",
"postcss": "^8.3.6",
"prettier": "2.3.2",
"reading-time": "^1.4.0",
"rehype": "12.0.0",
"rehype-autolink-headings": "6.0.0",
"rehype-code-titles": "1.0.3",
"rehype-prism-plus": "^0.0.5",
"rehype-slug": "5.0.0",
"remark-gfm": "^2.0.0",
"rss": "1.2.2"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}