-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.27 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
{
"name": "sql",
"private": true,
"version": "0.0.0",
"main": "./src/App.tsx",
"type": "module",
"scripts": {
"dev": "vite",
"client": "npm run dev",
"build": "tsc -b && vite build",
"server": "nodemon --watch server --ext ts --exec tsx server/server.ts",
"lint": "eslint .",
"test": "vitest run",
"preview": "vite preview",
"start": "concurrently \"npm run server\" \"npm run client\""
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.56.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.57.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.57.1",
"@opentelemetry/instrumentation-document-load": "^0.44.0",
"@opentelemetry/instrumentation-user-interaction": "^0.44.0",
"@opentelemetry/sdk-node": "^0.57.1",
"@opentelemetry/sdk-trace-web": "^1.30.1",
"@radix-ui/react-alert-dialog": "^1.1.5",
"@radix-ui/react-slot": "^1.1.1",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"dockerode": "^4.0.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.474.0",
"pg": "^8.13.3",
"prom-client": "^15.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.5",
"recharts": "^2.15.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.0",
"@types/node-fetch": "^2.6.12",
"@types/pg": "^8.11.11",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vitest": "^2.1.9",
"yaml": "^2.6.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}