-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.7 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
{
"name": "smart-garden.js",
"version": "1.0.0",
"description": "SmartGardenReplicator.js: receives data from sensors via MQTT and stores it in a SQLite database to be replicated later via RemoteAPI.js class",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist",
"dev": "nodemon --exec babel-node src/index.js",
"test": "babel-node tests/index.js",
"task:replicate": "babel-node src/tasks/replicate.js",
"debug": "DEBUG=* nodemon --exec babel-node src/index.js",
"lint": "eslint . --ext .js --ignore-path .gitignore",
"lint-fix": "eslint . --ext .js --ignore-path .gitignore --fix"
},
"keywords": [
"smartgarden",
"IoT",
"bigdata",
"mqtt"
],
"author": "soknifedev",
"license": "GPL-3.0",
"dependencies": {
"async": "^3.2.0",
"async-mqtt": "^2.6.1",
"axios": "^0.21.1",
"form-data": "^2.3.3",
"mariadb": "^2.5.4",
"mqtt": "^4.2.6",
"pouchdb-node": "^7.2.2",
"sequelize": "^6.6.5",
"sequelize-auto": "^0.8.3",
"uuidv4": "^6.2.10"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.5",
"@wortise/eslint-config": "^1.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^8.0.1",
"nodemon": "^2.0.4"
}
}