forked from Winston1011/ChatGPT-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.64 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
{
"name": "chatgpt-web",
"private": false,
"version": "1.0.2",
"description": "ChatGPT Web",
"author": "Epoch",
"keywords": [
"chatgpt-web",
"chatgpt",
"chatbot",
"ai",
"open",
"react"
],
"scripts": {
"tsc": "tsc -p tsconfig.node.json",
"dev": "vite",
"dev:web": "vite",
"start": "node server/index.js",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@ant-design/pro-components": "^2.4.4",
"@traptitech/markdown-it-katex": "^3.6.0",
"alipay-sdk": "^3.4.0",
"antd": "^5.6.3",
"bull": "^4.10.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"gpt-tokens": "^1.0.8",
"highlight.js": "^11.7.0",
"html2canvas": "^1.4.1",
"ioredis": "^5.3.2",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"mysql2": "^3.3.1",
"node-fetch": "^2.6.11",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.10.0",
"sequelize": "^6.31.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.5.1",
"zustand": "^4.3.7",
"@react-buddy/ide-toolbox": "^2.4.0",
"@react-buddy/palette-antd": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^20.1.3",
"@types/node-fetch": "^2.6.4",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-define-config": "^1.19.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"ping": "^0.4.4",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.2.0"
},
"main": "index.js",
"repository": "[email protected]:Winston1011/ChatGPT-Web.git",
"license": "MIT"
}