forked from 79E/ChatGpt-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.75 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": "chatgpt-web",
"private": false,
"version": "1.2.2",
"description": "ChatGPT Web",
"author": "79E",
"keywords": [
"chatgpt-web",
"chatgpt",
"chatbot",
"ai",
"open",
"react"
],
"scripts": {
"tsc": "tsc -p tsconfig.node.json",
"dev": "ts-node-dev --project tsconfig.node.json server/index.ts",
"dev:web": "vite",
"start": "node build/index.js",
"build": "tsc -p tsconfig.node.json && vite build",
"preview": "vite preview",
"eslint": "eslint \"src/**/*.{ts,tsx}\" \"server/**/*.{ts,tsx}\"",
"eslint:fix": "eslint \"src/**/*.{ts,tsx}\" \"server/**/*.{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.5.0",
"bull": "^4.10.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"form-data": "^4.0.0",
"gpt-tokens": "^1.0.7",
"highlight.js": "^11.7.0",
"html2canvas": "^1.4.1",
"ioredis": "^5.3.2",
"jimp": "^0.22.8",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"multer": "^1.4.5-lts.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"
},
"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": "git@github.com:79E/ChatGpt-Web.git",
"license": "MIT"
}