-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "maximouslk.me",
"description": "My personal website",
"license": "MIT",
"scripts": {
"fmt": "prettier --check .",
"fmt:fix": "prettier --write .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"dev": "next",
"start": "next start",
"build": "next build",
"prod": "next build && next start"
},
"dependencies": {
"@notionhq/client": "^2.2.14",
"@plaiceholder/next": "^3.0.0",
"@resvg/resvg-js": "^2.6.0",
"@tailwindcss/typography": "^0.5.10",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.2",
"autoprefixer": "^10.4.16",
"base64url": "^3.0.1",
"date-fns": "^2.30.0",
"feed": "^4.2.2",
"gemoji": "^8.1.0",
"katex": "^0.16.9",
"next": "latest",
"next-pwa": "^5.6.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"plaiceholder": "^3.0.0",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-katex": "^3.0.1",
"react-player": "^2.14.0",
"reading-time": "^1.5.0",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"tailwindcss": "^3.3.6",
"unfurl.js": "^6.3.2",
"use-scramble": "^2.2.12"
},
"devDependencies": {
"@next/codemod": "latest",
"@tailwindcss/forms": "^0.5.7",
"@types/katex": "^0.16.7",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"browserify-fs": "^1.0.0",
"eslint": "^8.55.0",
"eslint-config-next": "latest",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"sass": "^1.69.5",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 140,
"endOfLine": "crlf",
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"engines": {
"node": ">=18"
}
}