-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 763 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 763 Bytes
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
{
"name": "meteo",
"version": "1.0.0",
"description": "Visualization for Vaisalla weather station.",
"author": {
"name": "Michael Wolf",
"email": "michael@mictronics.de",
"url": "https://www.mictronics.de"
},
"license": "GPL-v3.0-or-later",
"private": true,
"engines": {
"node": ">= 13.5.0",
"npm": ">= 6.14.0"
},
"main": "./client/index.html",
"dependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
},
"devDependencies": {
"eslint": "^7.22.0"
},
"scripts": {
"lint": "eslint --ext .js client"
}
}