-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.37 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.37 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
86
87
88
89
90
91
{
"name": "test-next",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "node helpers/versions.js && react-env -- next dev",
"copy:public": "shx cp -R public/ .next/standalone/",
"copy:static": "shx cp -R .next/static/ .next/standalone/.next",
"build": "node helpers/versions.js && next build",
"build:standalone": "node helpers/versions.js && cross-env BUILD_STANDALONE=true next build && npm run copy:public && npm run copy:static",
"start": "react-env -- next start",
"start:standalone": "cd .next/standalone && react-env -- node server.js",
"lint": "next lint",
"pw:test:local": "playwright test --config=playwright.local5000.config.ts",
"pw:test:local:chromium": "playwright test --project=chromium --config=playwright.local5000.config.ts --headed",
"pw:test:local:firefox": "playwright test --project=firefox --config=playwright.local5000.config.ts --headed",
"pw:test:local:webkit": "playwright test --project=webkit --config=playwright.local5000.config.ts --headed",
"pw:test:local:experimental:ui": "playwright test --config=playwright.local5000.config.ts --ui"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@hiveio/healthchecker-component": "2.0.0",
"@hiveio/wax": "2.0.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^4.29.25",
"@tanstack/react-query-devtools": "^4.29.25",
"@types/node": "20.4.2",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"autoprefixer": "10.4.14",
"child_process": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"csv-stringify": "^6.5.2",
"date-fns": "^3.6.0",
"echarts": "^5.6.0",
"echarts-for-react": "^3.0.2",
"eslint": "8.45.0",
"eslint-config-next": "15.3.3",
"long": "^5.2.3",
"lucide-react": "^0.474.0",
"moment": "^2.29.4",
"next": "15.3.3",
"next-themes": "^0.2.1",
"postcss": "^8.4.31",
"react": "18.3.1",
"react-country-flag": "^3.1.0",
"react-day-picker": "^8.10.0",
"react-dom": "18.3.1",
"react-error-boundary": "^4.0.11",
"react-grid-layout": "^1.5.2",
"react-markdown": "^10.1.0",
"recharts": "^2.9.2",
"sharp": "^0.32.4",
"sonner": "^1.4.3",
"stable": "^0.1.8",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.4.12",
"tailwindcss-animate": "^1.0.6",
"timeago-react": "^3.0.6",
"timeago.js": "^4.0.2",
"typescript": "5.1.6"
},
"devDependencies": {
"@beam-australia/react-env": "^3.1.1",
"@playwright/test": "1.57.0",
"@tanstack/eslint-plugin-query": "^4.29.25",
"@types/react-grid-layout": "^1.3.5",
"@types/yazl": "^2.4.5",
"cross-env": "^7.0.3",
"shx": "^0.3.4"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}