forked from samuelkraft/notion-blog-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 893 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 893 Bytes
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": "nextjs",
"version": "0.1.0",
"private": true,
"engines": "22",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@notionhq/client": "^2.2.1",
"date-fns": "^2.29.3",
"next": "13.0.0",
"pluralize": "^8.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.57.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.1",
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@types/node": "^18.8.5",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"cross-env": "^7.0.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}