-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "smartthings-phevctl",
"version": "1.9.0",
"description": "smartthings remote ctrl",
"main": "smartthings-phevctl.js",
"scripts": {
"start": "node smartthings-phevctl.js",
"lint": "eslint --quiet --ext .js lib authenticationConnection.js smartthings-phevctl.js ./remote-ctrl-ui/src",
"lint:fix": "eslint --fix --quiet --ext .js lib authenticationConnection.js smartthings-phevctl.js ./remote-ctrl-ui/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vzakharchenko/smartthings-phevctl.git"
},
"keywords": [
"smartthings",
"outlander",
"phev",
"mitsubishi",
"outlanderPhev",
"outlander-phev",
"phevctl",
"mikrotik",
"sms"
],
"author": "vzakharchenko",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vzakharchenko/smartthings-phevctl/issues"
},
"homepage": "https://github.com/vzakharchenko/smartthings-phevctl#readme",
"dependencies": {
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cron": "^1.8.2",
"express": "^4.17.1",
"express-session": "^1.17.2",
"keycloak-connect": "^15.0.2",
"mkdirp": "^1.0.4",
"onoff": "^6.0.3",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"querystring": "^0.2.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config": "0.3.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-react-native": "3.11.0"
},
"eslintConfig": {
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react",
"react-native"
],
"extends": "airbnb",
"rules": {
"no-undef": 0,
"react/prop-types": 0,
"import/extensions": 0,
"react/destructuring-assignment": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"jsx-a11y/control-has-associated-label": 0,
"no-await-in-loop": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
]
}
}
}