-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "codereview.gpt",
"version": "0.3.0",
"description": "Reviews PRs so that you can pretend to work",
"private": true,
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\""
},
"devDependencies": {
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.2",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.8.1",
"showdown": "^2.1.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"buffer": "^6.0.3",
"chatgpt": "^5.1.3",
"eventsource-parser": "^0.0.5",
"node-html-parser": "^6.1.5",
"parse-diff": "^0.11.1"
}
}