forked from AllanOricil/nrg-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.81 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
{
"name": "@allanoricil/node-red-node-es-template",
"version": "2.0.0",
"description": "A Node-RED project built using the nrg cli.",
"main": "dist/index.js",
"author": {
"name": "AllanOricil",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"node-red",
"nrg",
"es2022",
"esm"
],
"engines": {
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"build": "./node_modules/.bin/nrg build",
"watch": "./node_modules/.bin/nrg dev -w -o",
"watch:debug": "./node_modules/.bin/nrg dev -w -o -d",
"start": "./node_modules/.bin/nrg dev -o",
"start:debug": "./node_modules/.bin/nrg dev -o -d",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier **/*.{js,json,html} --ignore-unknown",
"format:fix": "prettier **/*.{js,json,html} --write --ignore-unknown",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{json, html}": "prettier --write --ignore-unknown",
"**/*.{js}": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"node-red": {
"nodes": {
"custom-nodes": "dist/index.js"
}
},
"dependencies": {
"axios": "^1.7.5",
"is-odd": "^3.0.1"
},
"devDependencies": {
"@allanoricil/nrg-cli": "^0.0.0-beta.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"esbuild-vue": "^1.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"node-red": "^4.0.2",
"prettier": "^3.2.5",
"semantic-release": "^23.1.1"
}
}