-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.23 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
{
"name": "chatgpt-midjourney",
"version": "3.2.3",
"private": false,
"license": "MIT",
"repository": {
"url": "https://github.com/Licoy/ChatGPT-Midjourney"
},
"scripts": {
"dev": "next dev",
"build": "cross-env BUILD_MODE=standalone next build",
"start": "next start",
"lint": "next lint",
"export": "cross-env BUILD_MODE=export BUILD_APP=1 next build",
"export:dev": "cross-env BUILD_MODE=export BUILD_APP=1 next dev",
"app:dev": "yarn tauri dev",
"app:build": "yarn tauri build",
"prompts": "node ./scripts/fetch-prompts.mjs",
"proxy-dev": "proxychains4 -f ./scripts/proxychains.conf yarn dev",
"proxy-dev-win": "proxychains -f ./scripts/proxychains.conf yarn dev"
},
"dependencies": {
"@fortaine/fetch-event-source": "^3.0.6",
"@hello-pangea/dnd": "^16.3.0",
"@svgr/webpack": "^6.5.1",
"@swc/core": "^1.3.87",
"@vercel/analytics": "^0.1.11",
"body-parser": "^1.20.2",
"concurrently": "^8.2.1",
"emoji-picker-react": "^4.4.7",
"express": "^4.18.2",
"fuse.js": "^6.6.2",
"html-to-image": "^1.11.11",
"mermaid": "^10.3.1",
"midjourney": "^4.3.17",
"nanoid": "^4.0.2",
"next": "^13.4.19",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.1",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sass": "^1.68.0",
"sharp": "^0.32.6",
"spark-md5": "^3.0.2",
"use-debounce": "^9.0.4",
"uuid": "^9.0.1",
"workerpool": "^6.5.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/express": "^4.17.17",
"@types/node": "^20.6.3",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-katex": "^3.0.0",
"@types/spark-md5": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.3.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"webpack": "^5.88.2"
}
}