-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "axelar-monitoring",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev --turbopack -p 3002\" \"npm run server:dev\"",
"build": "next build && npm run build:server",
"build:server": "tsc --project tsconfig.server.json",
"start": "concurrently \"next start -p 3002\" \"npm run server\"",
"lint": "next lint",
"server": "node dist/server/index.js",
"server:dev": "tsx src/server/index.ts",
"clean": "rimraf dist && rimraf .next"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"axios": "^1.8.4",
"next": "15.3.0",
"node-telegram-bot-api": "^0.66.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"uuid": "^11.1.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.17.30",
"@types/node-telegram-bot-api": "^0.64.8",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"concurrently": "^9.1.2",
"dotenv": "^16.5.0",
"eslint": "^9",
"eslint-config-next": "15.3.0",
"rimraf": "^6.0.1",
"tailwindcss": "^4",
"tsx": "^4.19.3",
"typescript": "^5"
}
}