forked from josStorer/chatGPTBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "chatgptbox",
"scripts": {
"build": "node build.mjs --production",
"build:safari": "bash ./safari/build.sh",
"dev": "node build.mjs --development",
"analyze": "node build.mjs --analyze",
"lint": "eslint --ext .js,.mjs,.jsx .",
"lint:fix": "eslint --ext .js,.mjs,.jsx . --fix",
"pretty": "prettier --write ./**/*.{js,mjs,jsx,json,css,scss}",
"stage": "run-script-os",
"stage:default": "git add $(git diff --name-only --cached --diff-filter=d)",
"stage:win32": "powershell git add $(git diff --name-only --cached --diff-filter=d)",
"verify": "node .github/workflows/scripts/verify-search-engine-configs.mjs"
},
"pre-commit": [
"pretty",
"stage",
"lint"
],
"dependencies": {
"@nem035/gpt-3-encoder": "^1.1.7",
"@picocss/pico": "^1.5.9",
"@primer/octicons-react": "^18.3.0",
"buffer": "^6.0.3",
"claude-ai": "^1.2.2",
"countries-list": "^2.6.1",
"crypto-browserify": "^3.12.0",
"diff": "^5.1.0",
"file-saver": "^2.0.5",
"github-markdown-css": "^5.2.0",
"gpt-3-encoder": "^1.1.4",
"graphql": "^16.6.0",
"i18next": "^22.4.15",
"jsonwebtoken": "8.5.1",
"katex": "^0.16.6",
"lodash-es": "^4.17.21",
"md5": "^2.3.0",
"parse5": "^6.0.1",
"preact": "^10.13.2",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "npm:@preact/compat@^17.1.2",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-draggable": "^4.4.5",
"react-i18next": "^12.2.0",
"react-markdown": "^8.0.7",
"react-tabs": "^4.2.1",
"react-toastify": "^9.1.2",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"rehype-raw": "^6.1.1",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@types/archiver": "^5.3.2",
"@types/fs-extra": "^11.0.1",
"@types/jsdom": "^21.1.1",
"@types/webextension-polyfill": "^0.10.0",
"archiver": "^5.3.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.39.0",
"eslint-plugin-react": "^7.32.2",
"fs-extra": "^11.1.1",
"graphql-tag": "^2.12.6",
"jsdom": "^21.1.1",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.5",
"node-fetch": "^3.3.1",
"pre-commit": "^1.2.2",
"prettier": "^2.8.7",
"progress-bar-webpack-plugin": "^2.1.0",
"run-script-os": "^1.1.6",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.80.0",
"webpack-bundle-analyzer": "^4.8.0"
}
}