forked from clmnin/summarize.site
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 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
{
"name": "summarize-gpt",
"version": "0.0.3",
"description": "Summarize any article using OpenAI's ChatGPT",
"author": "Clament John <cj@hackerlab.in>",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode production",
"dev": "webpack --config ./webpack.config.js --mode development --watch"
},
"dependencies": {
"dompurify": "^2.4.1",
"eventsource-parser": "^0.0.5",
"expiry-map": "^2.0.0",
"html-to-md": "^0.8.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.7.3",
"css-loader": "^6.7.1"
}
}