-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
98 lines (98 loc) · 2.51 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
95
96
97
98
{
"name": "chatgpt-plus",
"private": true,
"version": "1.5.17",
"description": "ChatGPT-Plus Application.",
"author": "Zhpd <[email protected]>",
"keywords": [
"chatgpt",
"chatgpt-plus",
"openai",
"chatbot",
"gpt3",
"gpt4",
"nextjs"
],
"license": "MIT",
"engines": {
"node": ">=14"
},
"homepage": "https://chat.gptc.cc",
"bugs": "https://github.com/zhpd/chatgpt-plus/issues",
"repository": {
"type": "git",
"url": "https://github.com/zhpd/chatgpt-plus"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"tauri": "tauri",
"build:tauri": "cross-env APP_ENV=tauri next build",
"deploy": "npm run build && npm run release-ci",
"release": "dotenv -- release-it ",
"release-ci": "dotenv -- release-it --ci",
"prepare": "husky install"
},
"dependencies": {
"@emoji-mart/data": "1.1.2",
"@emoji-mart/react": "1.1.1",
"@reduxjs/toolkit": "1.9.5",
"@vercel/analytics": "1.0.1",
"ahooks": "3.7.8",
"antd": "5.8.2",
"axios": "1.4.0",
"cross-env": "7.0.3",
"dayjs": "1.11.9",
"emoji-mart": "5.5.2",
"github-markdown-css": "5.2.0",
"i18next": "23.4.4",
"i18next-browser-languagedetector": "7.1.0",
"katex": "0.16.8",
"markdown-it": "13.0.1",
"nanoid": "4.0.2",
"next": "13.4.13",
"next-i18next": "14.0.0",
"nodemailer": "6.9.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "13.0.3",
"react-icons": "4.10.1",
"react-markdown": "8.0.7",
"react-redux": "8.1.2",
"react-syntax-highlighter": "15.5.0",
"rehype-katex": "6.0.3",
"rehype-raw": "6.1.1",
"remark-gfm": "3.0.1",
"remark-math": "5.1.1",
"typescript": "5.1.6"
},
"devDependencies": {
"@commitlint/cli": "17.7.0",
"@commitlint/config-conventional": "17.7.0",
"@release-it/conventional-changelog": "7.0.0",
"@svgr/webpack": "8.0.1",
"@tauri-apps/cli": "1.4.0",
"@types/katex": "0.16.2",
"@types/markdown-it": "13.0.0",
"@types/node": "20.4.9",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "15.5.7",
"auto-changelog": "2.4.0",
"dotenv-cli": "7.2.1",
"eslint": "8.46.0",
"eslint-config-next": "13.4.13",
"husky": "8.0.3",
"jest": "29.6.2",
"raw-loader": "4.0.2",
"release-it": "16.1.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}