-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "solix2mqtt",
"version": "1.0.0",
"main": "src/app.ts",
"author": "Tom Quist",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./bin/app.js",
"dev": "ts-node ./src/app.ts",
"lint:fix": "eslint --fix 'src/**/*.ts{,x}'",
"lint": "tsc --noEmit && eslint 'src/**/*.ts{,x}'"
},
"dependencies": {
"async-mqtt": "^2.6.3",
"dotenv": "^16.0.2",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/lodash": "^4.14.185",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"packageManager": "[email protected]"
}