-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.35 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": "next-notion-portfolio",
"version": "4.0.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:analyze": "ANALYZE=true npm run build",
"lint": "npm run prettier && eslint '**/*.{js,jsx,ts,tsx}' --fix",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,scss}'",
"lint:style": "npx stylelint '**/*.scss'"
},
"dependencies": {
"@keyvhq/core": "^1.6.26",
"@keyvhq/redis": "^1.6.28",
"@next/bundle-analyzer": "^12.3.4",
"@vercel/og": "^0.0.16",
"got": "^12.6.1",
"gray-matter": "^4.0.3",
"ioredis": "^5.3.2",
"lqip-modern": "^1.2.0",
"next": "14.1",
"next-seo": "^6.1.0",
"node-html-parser": "^5.4.2",
"notion-compat": "^6.16.0",
"notion-types": "^6.16.0",
"p-map": "^5.5.0",
"p-memoize": "^6.0.2",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"sass": "^1.66.1",
"sharp": "^0.32.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.4",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/gtag.js": "^0.0.10",
"@types/node": "^17.0.45",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.49.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.29",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-icons": "^4.11.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5"
},
"optionalDependencies": {
"fsevents": "2.1.2"
},
"overrides": {
"lqip-modern": {
"sharp": "$sharp"
}
}
}