-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.79 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
{
"name": "blog",
"private": true,
"version": "1.0.0",
"description": "Blog using Notion as CMS.",
"homepage": "https://blog.kaichi.dev",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier . --write"
},
"keywords": [
"blog",
"notion"
],
"author": "kaichi <[email protected]>",
"license": "MIT",
"dependencies": {
"@giscus/react": "^2.2.8",
"@upstash/redis": "^1.20.6",
"@vercel/analytics": "^1.0.0",
"@vercel/og": "^0.5.0",
"clsx": "^1.2.1",
"got": "^12.6.0",
"isomorphic-unfetch": "^4.0.2",
"lodash.omit": "^4.5.0",
"lodash.remove": "^4.7.0",
"lqip-modern": "^2.0.0",
"next": "^13.2.4",
"next-themes": "^0.2.1",
"notion-client": "^6.16.0",
"notion-types": "^6.16.0",
"notion-utils": "^6.16.0",
"p-map": "^5.5.0",
"p-memoize": "^7.1.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-body-classname": "^1.3.1",
"react-dom": "^18.2.0",
"react-notion-x": "^6.16.0",
"react-tweet": "^3.0.3",
"rss": "^1.2.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@types/lodash.omit": "^4.5.7",
"@types/lodash.remove": "^4.7.7",
"@types/react": "18.0.29",
"@types/react-dom": "^18.0.11",
"@types/rss": "^0.0.30",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"typescript": "5.0.2"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": false,
"semi": true,
"jsxSingleQuote": true
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}