-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.74 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.74 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
{
"name": "open-chat-studio",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --mode production",
"dev": "webpack --mode development",
"dev-watch": "webpack --mode development --watch",
"type-check": "tsc --noEmit",
"type-check-watch": "npm run type-check -- --watch",
"lint": "eslint --fix assets/javascript",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"author": "",
"homepage": "http://example.com/",
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/compat-data": "^7.29.3",
"@babel/core": "^7.27.7",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.2",
"@tailwindcss/typography": "^0.5.19",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.54.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.4",
"daisyui": "^5.5.19",
"enquirer": "^2.4.1",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.4",
"globals": "^17.4.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.5.10",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.0",
"postcss-nested": "^7.0.1",
"style-loader": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.46.1",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@codemirror/lang-jinja": "^6.0.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lint": "^6.9.5",
"@codemirror/merge": "^6.11.1",
"@sentry/webpack-plugin": "^4.0.2",
"@tailwindcss/postcss": "^4.1.5",
"@uiw/codemirror-theme-github": "^4.25.5",
"@uiw/react-codemirror": "^4.23.7",
"alertifyjs": "^1.14.0",
"alpinejs": "^3.15.9",
"axios": "^1.15.2",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dompurify": "^3.4.0",
"htmx.org": "^2.0.8",
"immer": "^10.1.1",
"js-cookie": "^3.0.5",
"js-tiktoken": "^1.0.21",
"lodash": "^4.17.23",
"open-chat-studio-widget": "^0.7.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.1",
"react-hotkeys-hook": "^5.2.1",
"react-select": "^5.10.2",
"reactflow": "^11.11.4",
"short-unique-id": "^5.3.2",
"tailwindcss": "^4.1.4",
"tom-select": "^2.6.0",
"zustand": "^5.0.13"
},
"optionalDependencies": {
"cypress": "^15.14.2"
}
}