forked from transphere-dev/trans-gpt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.97 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
{
"name": "transgpt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"start": "next start",
"electron-dev": "concurrently \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron-build": "npm run build && electron-builder",
"release": "npm run electron-build -- -p always"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.0",
"@chakra-ui/react": "^2.5.3",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@raphiniert/ra-data-postgrest": "^2.0.0-alpha.3",
"chart.js": "^4.3.0",
"concurrently": "^8.0.1",
"dotenv": "^16.3.1",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eventsource-parser": "^1.0.0",
"framer-motion": "^5.6.0",
"iso-639-1": "^2.1.15",
"js-cookie": "^3.0.1",
"next": "13.2.4",
"node-cmd": "^5.0.0",
"node-fetch": "^2.6.12",
"nodemailer": "^6.9.1",
"nprogress": "^0.2.0",
"openai": "^4.14.2",
"ra-data-json-server": "^4.12.0",
"react": "18.2.0",
"react-admin": "^4.12.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-loader-spinner": "^5.3.4",
"sse.js": "^0.6.1",
"wait-on": "^7.0.1",
"xlsx": "^0.18.5",
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"@types/node": "20.3.3",
"@types/react": "18.2.12",
"electron": "^24.1.1",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "transgpt.com",
"productName": "TransGPT",
"directories": {
"buildResources": "resources",
"output": "dist"
},
"files": [
"build/**/*",
"node_modules/**/*",
"electron.js"
],
"extraResources": [
"build"
],
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}