-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.19 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.19 KB
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
99
100
101
102
103
{
"name": "nemo-agent-toolkit-ui",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "concurrently --kill-others --names \"UI\" -c \"bgBlue.bold\" --hide 1 \"npm run --silent dev:gateway\" \"npm run --silent dev:next\"",
"dev:gateway": "node proxy/server.js",
"dev:next": "NEXT_TELEMETRY_DISABLED=1 next dev -p 3099",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --runInBand",
"test:proxy": "jest __tests__/proxy --runInBand --testTimeout=15000"
},
"dependencies": {
"@datadog/browser-rum": "^5.11.0",
"@dqbd/tiktoken": "^1.0.2",
"@radix-ui/react-select": "^2.1.2",
"@tabler/icons-react": "^2.9.0",
"chart.js": "^4.4.1",
"eventsource-parser": "^0.1.0",
"file-saver": "^2.0.5",
"form-data": "^4.0.4",
"html-to-image": "^1.11.11",
"http-proxy": "^1.18.1",
"i18next": "^22.4.13",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.454.0",
"next": "^14.2.35",
"next-auth": "^4.24.13",
"next-i18next": "^13.2.2",
"react": "^18.2.0",
"react-bootstrap-modal": "^4.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-force-graph-2d": "^1.25.5",
"react-hot-toast": "^2.4.0",
"react-i18next": "^12.2.0",
"react-markdown": "^10.1.0",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^2.12.7",
"rehype-mathjax": "^7.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-unwrap-images": "^5.0.0",
"uuid": "^9.0.1",
"concurrently": "^8.2.2",
"detect-port": "^2.1.0",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@mozilla/readability": "^0.6.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"@trivago/prettier-plugin-sort-imports": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@types/http-proxy": "^1.17.14",
"@types/jsdom": "^21.1.1",
"@types/node": "18.15.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"endent": "^2.1.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.5.9",
"gpt-3-encoder": "^1.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^21.1.1",
"next-runtime-env": "^1.3.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "4.9.5",
"whatwg-fetch": "^3.6.19",
"ws": "^8.14.2",
"node-fetch": "^2.7.0"
},
"overrides": {
"@next/eslint-plugin-next": {
"glob": "10.5.0"
},
"glob": "10.5.0",
"jose": "^4.15.9",
"mdast-util-to-hast": "13.2.1"
}
}