-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
45 lines (45 loc) · 1.34 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
{
"private": true,
"description": "Notion-powered blog starter with Nextjs and Tailwind",
"repository": "https://github.com/tuanphungcz/nextjs-notion-blog-starter",
"homepage": "https://nextjs-notion-blog-starter.vercel.app/",
"author": "Tuan Phung <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"lint": "next lint"
},
"dependencies": {
"@notionhq/client": "^0.4.13",
"@tabler/icons": "^1.119.0",
"@tailwindcss/line-clamp": "^0.4.4",
"canvas-confetti": "^1.9.2",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"next": "^12.3.4",
"next-api-og-image": "^4.3.0",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-canvas-confetti": "^1.4.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.0",
"react-hot-toast": "^2.4.1",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/react": "^18.2.53",
"autoprefixer": "^10.4.17",
"eslint": "8.21.0",
"eslint-config-next": "^12.3.4",
"postcss": "^8.4.33",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.1",
"typescript": "^4.9.5"
}
}