-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "kyoung-jin-blog",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn eslint . --fix",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@giscus/react": "^2.4.0",
"@vanilla-extract/css": "^1.14.2",
"@vanilla-extract/next-plugin": "^2.4.0",
"@vanilla-extract/sprinkles": "^1.6.1",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"cmdk": "^0.2.1",
"eslint-config-next": "^14.2.2",
"next": "^14.2.2",
"next-themes": "^0.3.0",
"nextjs-progressbar": "^0.0.16",
"normalize.css": "^8.0.1",
"notion-client": "^6.16.0",
"notion-types": "^6.16.0",
"notion-utils": "^6.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-notion-x": "^6.16.0",
"rss": "^1.2.2",
"sharp": "^0.33.3",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.11.0",
"@next/eslint-plugin-next": "^13.4.9",
"@svgr/webpack": "^8.1.0",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/rss": "^0.0.32",
"@types/smoothscroll-polyfill": "^0.3.1",
"@typescript-eslint/eslint-plugin": "5",
"@typescript-eslint/parser": "5",
"eslint": "8.18.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write"
]
},
"packageManager": "yarn@4.0.2"
}