-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
{
"name": "kafka-kare",
"version": "1.0.0",
"description": "A Kafka error handling visualizer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next dev",
"build": "next build",
"prod": "set \"NODE_ENV=production\" && node server/server.js",
"start": "next start",
"server": "nodemon server/server.js",
"watch": "nodemon --watch server --ext js "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@dnd-kit/core": "^6.1.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.2",
"chartjs-adapter-date-fns": "^3.0.0",
"clsx": "^2.1.0",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-session": "^1.18.0",
"framer-motion": "^11.0.8",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"mongodb": "^6.4.0",
"mongoose": "^8.2.0",
"next-auth": "^4.24.7",
"prom-client": "^15.1.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"socket.io": "^4.7.5",
"supertest": "^6.3.4",
"tailwind-merge": "^2.2.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"autoprefixer": "^10.4.18",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"html-webpack-plugin": "^5.6.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.0",
"postcss": "^8.4.35",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
}
}