-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 942 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
36
37
{
"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",
"lint:fix": "eslint ./ --fix"
},
"dependencies": {
"@notionhq/client": "^2.2.4",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.11.0",
"postcss": "^8.4.22",
"tailwindcss": "^3.3.1"
}
}