-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"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.4",
"@tailwindcss/line-clamp": "^0.4.0",
"canvas-confetti": "^1.5.1",
"chrome-aws-lambda": "^10.1.0",
"copy-to-clipboard": "^3.3.2",
"next": "^14.0.0",
"next-api-og-image": "^4.3.0",
"prism-react-renderer": "^1.2.1",
"react": "^18.2.0",
"react-canvas-confetti": "^1.3.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-hot-toast": "^2.3.0",
"react-useanimations": "^2.10.0",
"slugify": "^1.6.1"
},
"devDependencies": {
"@types/react": "^18.0.16",
"autoprefixer": "^10.4.0",
"eslint": "8.53.0",
"eslint-config-next": "^14.0.0",
"postcss": "^8.4.16",
"prettier": "^3.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^5.0.0"
}
}