This repository was archived by the owner on Sep 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.36 KB
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
{
"name": "iot-server",
"version": "1.1.0",
"description": "Generic purpose ES6 NodeJS + MongoDB + Redis IoT backend",
"author": "Martín Montes <martin11lrx@gmail.com>",
"license": "MIT",
"main": "index.js",
"private": false,
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon src/index.js --exec babel-node",
"lint": "eslint --ignore-path .gitignore . --fix",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 10000 test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf dist/",
"prebuild": "npm run clean",
"build": "babel -d dist/ src/",
"production": "cross-env NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mmontes11/iot-server.git"
},
"keywords": [
"js",
"javascript",
"es6",
"babel",
"nodejs",
"npm",
"express",
"mongodb",
"mongoose",
"redis",
"mocha",
"chai",
"istanbul",
"winston",
"docker",
"iot",
"internet-of-things",
"iot-server",
"mqtt",
"eslint"
],
"dependencies": {
"@google/maps": "^0.4.6",
"async-mqtt": "^1.0.1",
"bluebird": "^3.4.7",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cookie-parser": "1.4.3",
"cors": "2.8.1",
"cross-env": "^5.1.4",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-basic-auth": "^0.2.3",
"express-jwt": "^5.3.1",
"express-winston": "^3.0.0",
"helmet": "^3.12.0",
"http-status": "^1.0.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^2.3.5",
"moment": "^2.22.1",
"mongoose": "^5.2.0",
"mongoose-geojson-schema": "^2.1.2",
"redis": "^2.6.5",
"request-ip": "^2.0.2",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"underscore": "^1.9.0",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"coveralls": "^3.0.3",
"eslint-config-mmontes11-node": "^1.0.5",
"mocha": "^3.5.3",
"nodemon": "^1.18.11",
"nyc": "^11.7.1",
"prettier": "^1.12.1"
}
}