-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 878 Bytes
/
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
{
"name": "weatherapi",
"version": "2.0.0",
"description": "Raspberry PI Weather station, API and website",
"main": "src/index.js",
"homepage": "https://weather.antti.codes/",
"repository": "https://github.com/Chicken/WeatherApi",
"author": "Antti <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node .",
"lint": "eslint src --fix"
},
"dependencies": {
"ads1115": "^1.2.0",
"bent": "^7.3.12",
"bmp180-sensor": "^1.1.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"i2c-bus": "^5.2.2",
"mariadb": "^2.5.4",
"node-cron": "^3.0.0",
"onoff": "^6.0.3",
"raspi-node-sht31": "^1.0.1",
"serialport": "^9.2.0"
},
"devDependencies": {
"eslint": "^7.32.0"
}
}