-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.43 KB
/
package.json
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
{
"name": "open-dynamic-export",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"prebuild": "tsoa spec-and-routes",
"build": "tsc",
"lint": "tsc --noEmit && npx eslint . && npm run generate:config-json-schema",
"test": "vitest",
"start": "node dist/src/app.js",
"dev": "npm run prebuild && tsx src/app.ts",
"debug:sunspec-discovery": "tsx scripts/debugSunspecDiscovery.ts",
"cert:device-request": "tsx scripts/certDeviceRequest.ts",
"cert:device-generate": "tsx scripts/certDeviceGenerate.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/limiters/negativeFeedIn/amber/api.d.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [],
"author": "Long Zheng",
"license": "MIT",
"description": "",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/strictest": "^2.0.5",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/express": "^5.0.0",
"@types/jsrsasign": "^10.5.14",
"@types/node": "^22.9.0",
"@types/xml2js": "^0.4.14",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.2",
"eslint-plugin-prettier": "^5.2.1",
"mermaid": "^11.4.0",
"msw": "^2.6.5",
"openapi-typescript": "^7.4.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitepress": "^1.5.0",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^2.1.5",
"zod-to-json-schema": "^3.23.5"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fast-deep-equal": "^3.1.3",
"jsrsasign": "^11.1.0",
"modbus-serial": "^8.0.17",
"mqtt": "^5.10.2",
"openapi-fetch": "^0.13.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"pino-rotating-file-stream": "^0.0.2",
"redoc-express": "^2.1.0",
"tsoa": "^6.5.1",
"tsx": "^4.19.2",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
}
}