-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.48 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
{
"name": "bottlenetes",
"private": true,
"version": "0.5.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev:front": "vite",
"dev:back": "NODE_ENV=development node --no-warnings --loader ts-node/esm server/server.ts",
"build:front": "vite build",
"build:back": "npx tsc -b tsconfig.node.json",
"prod:front": "vite preview",
"prod:back": "NODE_ENV=production node dist/server/server.js",
"server": "nodemon",
"lint": "eslint ."
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@kubernetes/client-node": "^0.22.3",
"@mui/material": "^6.3.0",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"chart.js": "^4.4.7",
"concurrently": "^9.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.462.0",
"moment": "^2.30.1",
"openai": "^4.74.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.13.1",
"pg-format": "^1.0.4",
"pg-hstore": "^2.3.4",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^7.0.2",
"sequelize": "^6.37.5",
"wait-on": "^8.0.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tailwindcss/typography": "^0.5.15",
"@types/bcrypt": "^5.0.2",
"@types/chart.js": "^2.9.41",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/passport": "^1.0.17",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.16",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"nodemon": "^3.1.9",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.6"
}
}