-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.35 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 4.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "open-dynamic-export",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Long Zheng",
"type": "module",
"main": "index.js",
"scripts": {
"build": "pnpm run routes:generate && tsc -p tsconfig.server.json && vite build",
"build:debug": "pnpm run routes:generate && tsc -p tsconfig.server.debug.json",
"lint": "pnpm run routes:generate && oxlint . && oxfmt --check && pnpm run generate:config-json-schema",
"format": "oxfmt",
"test": "vitest",
"start": "NODE_ENV=production node dist/app.js",
"dev": "pnpm run routes:generate && tsx src/app.ts",
"routes:generate": "tsoa spec-and-routes && openapi-typescript ./src/tsoa/swagger.json -o ./src/ui/gen/api.d.ts",
"debug:sunspec-discovery": "tsx scripts/debugSunspecDiscovery.ts",
"cert:device-request": "tsx scripts/certDeviceRequest.ts",
"cert:device-generate": "tsx scripts/certDeviceGenerate.ts",
"cert:lfdi": "tsx scripts/certLfdi.ts",
"generate:config-json-schema": "tsx scripts/generateConfigJsonSchema.ts",
"generate:amber-api": "openapi-typescript https://raw.githubusercontent.com/amberelectric/public-api/main/swagger.json -o ./src/setpoints/negativeFeedIn/amber/api.d.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@heroui/button": "2.2.16",
"@heroui/card": "2.2.15",
"@heroui/code": "2.2.12",
"@heroui/input": "2.4.16",
"@heroui/kbd": "2.2.12",
"@heroui/link": "2.2.13",
"@heroui/navbar": "2.2.14",
"@heroui/snippet": "2.2.17",
"@heroui/switch": "2.2.14",
"@heroui/system": "2.4.12",
"@heroui/theme": "2.4.12",
"@influxdata/influxdb-client": "^1.35.0",
"@react-aria/visually-hidden": "3.8.29",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-router": "^1.157.14",
"@tsoa/runtime": "7.0.0-alpha.0",
"async-mutex": "^0.5.0",
"axios": "1.12.2",
"axios-retry": "^4.5.0",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.1.0",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"date-fns": "^4.1.0",
"decimal.js": "^10.6.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^12.29.0",
"jsrsasign": "^11.1.0",
"modbus-serial": "^8.0.23",
"mqtt": "^5.14.1",
"openapi-fetch": "^0.15.0",
"openapi-react-query": "^0.5.1",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"pino-rotating-file-stream": "^0.0.2",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-icons": "^5.5.0",
"react-intl": "^10.1.2",
"redoc-express": "^2.1.3",
"tailwind-variants": "0.2.1",
"tailwindcss": "3.4.13",
"tsoa": "^6.6.0",
"tsx": "^4.21.0",
"valibot": "^1.2.0",
"vite-express": "^0.22.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.91.3",
"@tanstack/eslint-plugin-router": "^1.155.0",
"@tanstack/router-devtools": "^1.157.14",
"@tanstack/router-plugin": "^1.157.14",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^22.19.7",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/xml2js": "^0.4.14",
"@valibot/to-json-schema": "^1.5.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"libxml2-wasm": "^0.5.0",
"mermaid": "^11.4.1",
"msw": "^2.7.0",
"openapi-typescript": "^7.6.1",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.21.0",
"postcss": "^8.4.47",
"typescript": "^6.0.2",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.5",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.18.3"
}