-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 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
{
"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"
},
"author": "",
"homepage": "http://example.com/",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/compat-data": "^7.26.2",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.13.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/lodash": "^4.17.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"css-loader": "^6.11.0",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nested": "^7.0.1",
"sass": "^1.81.0",
"sass-loader": "^13.3.3",
"style-loader": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.19.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.6",
"@uiw/codemirror-theme-github": "^4.23.6",
"@uiw/react-codemirror": "^4.23.7",
"alertifyjs": "^1.14.0",
"alpinejs": "^3.14.3",
"axios": "^1.7.7",
"chart.js": "^4.4.6",
"daisyui": "^4.12.13",
"dompurify": "^3.2.2",
"htmx.org": "^1.9.12",
"js-cookie": "^3.0.5",
"js-tiktoken": "^1.0.16",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-hotkeys-hook": "^4.5.1",
"reactflow": "^11.11.4",
"short-unique-id": "^5.2.0",
"tailwindcss": "^3.4.17",
"tom-select": "^2.3.1",
"zustand": "^4.5.5"
}
}