forked from Papillon6814/notion-nextjs-blog-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 865 Bytes
/
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
{
"name": "notion-nextjs-blog",
"description": "A starter blog template powered by Next.js, Notion and Tailwind CSS",
"version": "0.3.0",
"author": {
"name": "Lucio Villa",
"email": "[email protected]",
"url": "https://luciovilla.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/luciovilla/notion-nextjs-blog.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@notionhq/client": "^1.0.4",
"next": "^12.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"eslint-plugin-tailwindcss": "^3.5.2",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.3"
}
}