-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.7 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": "chatflow",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "webpack serve --mode=development --hot",
"build": "webpack --mode=production",
"start": "npx serve -s dist",
"lint": "eslint .",
"format": "prettier --check ./src",
"format.fix": "prettier --write ./src"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emotion/is-prop-valid": "^1.3.1",
"@hookform/resolvers": "^5.0.1",
"@reduxjs/toolkit": "^2.6.1",
"@sentry/react": "^9.10.0",
"@sentry/tracing": "^7.120.3",
"@stomp/stompjs": "^7.1.0",
"@tanstack/react-query": "^5.69.0",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"firebase": "^11.5.0",
"framer-motion": "^12.6.2",
"idb": "^8.0.2",
"lucide-react": "^0.503.0",
"pnpm": "^10.7.1",
"radix-ui": "^1.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-redux": "^9.2.0",
"react-router-dom": "^7.0.2",
"reconnecting-websocket": "^4.4.0",
"redux-persist": "^6.0.0",
"simple-peer": "^9.11.1",
"sockjs-client": "^1.6.1",
"sonner": "^2.0.3",
"uuid": "^11.0.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.8",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-redux": "^7.1.34",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"cypress": "^14.2.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^15.13.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"prettier": "3.4.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"workbox-webpack-plugin": "^7.3.0"
}
}