-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
33 lines (33 loc) · 924 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
{
"name": "notion-docsify",
"version": "1.0.0",
"description": "将 notion 的页面转化为静态网站",
"main": "scripts/index.js",
"author": "qumuchegi",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.config.js --mode=development",
"run-backup": "node build/bundle.js"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"adm-zip": "^0.5.9",
"node-html-markdown": "^1.1.3",
"notion-client": "^6.5.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-notion-x": "^4.12.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}