-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 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
{
"name": "sfdc-neo",
"version": "1.0.0",
"description": "Open AI GPT based bot to help you with salesforce tasks.",
"main": "src/server/index.js",
"type": "module",
"scripts": {
"client": "vite",
"build": "vite build",
"serve": "vite preview",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node src/server/index.js"
},
"author": "avi",
"license": "MIT",
"dependencies": {
"@cparra/apex-reflection": "^2.7.1",
"@dqbd/tiktoken": "^1.0.14",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@langchain/azure-openai": "^0.0.8",
"@langchain/core": "^0.1.62",
"@langchain/openai": "^0.0.28",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "^5.15.16",
"@mui/material": "^5.15.16",
"@supabase/supabase-js": "^2.43.1",
"adm-zip": "^0.5.12",
"apex-parser": "^2.17.0",
"babel-polyfill": "^6.26.0",
"celebrate": "^15.0.3",
"connect-redis": "^7.1.1",
"cspell-lib": "^8.8.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fast-xml-parser": "^4.3.6",
"fs-extra": "^11.2.0",
"github-markdown-css": "^5.5.1",
"html-react-parser": "^5.1.10",
"interweave": "^13.1.0",
"jsforce": "^1.11.1",
"json-to-pretty-yaml": "^1.2.2",
"langchain": "^0.1.36",
"openai": "^4.42.0",
"papaparse": "^5.4.1",
"passport": "^0.7.0",
"passport-forcedotcom": "^0.2.1",
"prettier": "^3.2.5",
"prettier-plugin-apex": "^2.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-icons": "^5.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.23.0",
"react-spinner-overlay": "^0.1.33",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.5",
"redis": "^4.6.13",
"remark-gfm": "^4.0.0",
"request-promise": "^4.2.6",
"sfdc-soup": "^18.4.0",
"strong-error-handler": "^5.0.8",
"temp": "^0.9.4",
"tempy": "^3.1.0",
"zod": "^3.23.6",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@salesforce/cli": "^2.39.6",
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-eslint": "^10.0.0",
"concurrently": "^8.2.2",
"eslint": "^9.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"nodemon": "^3.1.0",
"terser": "^5.31.0",
"vite": "^5.2.11"
}
}