-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 767 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 767 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
{
"name": "web-notion",
"version": "0.0.4",
"type": "module",
"description": "Lightweight website server using Notion databases.",
"bin": {
"web-notion": "index.js"
},
"scripts": {
"dev": "nodemon index.js serve",
"devBuild": "nodemon index.js build",
"start": "node index.js serve",
"build": "node index.js build"
},
"keywords": [
"notion"
],
"author": "Ricky",
"license": "MIT",
"dependencies": {
"@notionhq/client": "^2.2.9",
"argparse": "^2.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"fs-extra": "^11.1.1",
"pino-http": "^8.3.1",
"pino-http-print": "^3.1.0",
"showdown": "^2.1.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}