-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "ewx-worker-node-server",
"author": "",
"license": "ISC",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"engineStrict": true,
"engines": {
"node": ">=22.21.1",
"npm": ">=10.9.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"generate-envs": "__SKIP_PARSE_CONFIG='true' npx zod2md",
"eslint:lint": "npx eslint .",
"eslint:format": "npx eslint . --fix",
"prettier:lint": "prettier --check . --write",
"prettier:format": "prettier --write --ignore-unknown .",
"prepare": "husky install"
},
"dependencies": {
"@energyweb/node-red-contrib-energywebx": "0.7.2",
"@energyweb/node-red-contrib-green-proof-worker": "2.5.1",
"@polkadot/api": "14.0.1",
"axios": "1.7.9",
"cache-manager": "7.2.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-async-handler": "1.2.0",
"fastq": "1.19.0",
"jsonwebtoken": "9.0.2",
"node-red": "4.0.8",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"promise-retry": "2.0.1",
"zod": "3.24.1"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "18.19.75",
"@types/node-red": "1.3.5",
"@types/promise-retry": "1.1.6",
"@typescript-eslint/eslint-plugin": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"husky": "^9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.5.0",
"typescript": "5.7.3",
"zod2md": "0.1.4"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
}
}