-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "notion-on-next",
"version": "1.0.20",
"description": "A framework that makes it easy to develop a Next.js App using Notion as a CMS. Automatically generates types and provides components to render your Notion pages.",
"main": "dist/index.js",
"bin": {
"non": "dist/bin/index.js"
},
"types": "dist/index.d.ts",
"repository": "https://github.com/williamlmao/notion-on-next",
"keywords": [
"notion",
"next",
"cms",
"blog",
"portfolio",
"website"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"prepublish": "tsc",
"author": "williamlmao",
"license": "MIT",
"devDependencies": {
"@types/prompt": "^1.1.4",
"@types/react": "^18.0.26",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/request": "^2.48.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@notionhq/client": "^2.2.2",
"@types/react": "18.0.25",
"dotenv": "^16.0.3",
"eslint-config-next": "^13.0.6",
"next": "^13.0.6",
"prompt": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"request": "^2.88.2"
}
}