forked from josStorer/chatGPT-search-engine-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "chat-gpt-search-engine-extension",
"scripts": {
"build": "node build.mjs",
"lint": "eslint --ext .js,.mjs,.jsx .",
"lint:fix": "eslint --ext .js,.mjs,.jsx . --fix",
"pretty": "prettier --write ./**/*.{js,mjs,jsx,json}",
"stage": "git add -u"
},
"pre-commit": [
"pretty",
"stage",
"lint"
],
"dependencies": {
"@picocss/pico": "^1.5.6",
"@primer/octicons-react": "^17.9.0",
"eventsource-parser": "^0.0.5",
"expiry-map": "^2.0.0",
"github-markdown-css": "^5.1.0",
"katex": "^0.16.4",
"preact": "^10.11.3",
"prop-types": "^15.8.1",
"punycode": "^2.1.1",
"react": "npm:@preact/compat@^17.1.2",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-markdown": "^8.0.4",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"archiver": "^5.3.1",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"esbuild-sass-plugin": "^2.4.3",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"fs-extra": "^11.1.0",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.2",
"pre-commit": "^1.2.2",
"prettier": "^2.8.0",
"progress-bar-webpack-plugin": "^2.1.0",
"sass": "^1.56.2",
"sass-loader": "^13.2.0",
"terser-webpack-plugin": "^5.3.6",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.75.0"
}
}