forked from Huginn-Tech/monadoring
-
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.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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": "monadoring",
"version": "1.0.0",
"description": "Real-time validator uptime monitoring for Monad network",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/",
"start": "node -r dotenv/config .next/standalone/server.js",
"lint": "next lint"
},
"keywords": [
"monad",
"validator",
"monitoring",
"uptime",
"blockchain"
],
"author": "Huginn Tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Huginn-Tech/monadoring.git"
},
"dependencies": {
"next": "^14.2.0",
"dotenv": "^16.4.0",
"next-themes": "^0.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"lucide-react": "^0.400.0",
"@radix-ui/react-tooltip": "^1.1.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"typescript": "^5.4.0",
"tailwindcss": "^3.4.0",
"postcss": "^8.4.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0"
}
}