This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "lattice-connect",
"version": "0.2.2",
"description": "A small HTTP server + MQTT broker designed to bridge the web with Lattices in the field",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"lint": "eslint src",
"start": "npm run build && npx pm2 start dist/index.js --name lattice-connect --watch",
"stop": "npx pm2 stop lattice-connect",
"rm": "npx pm2 delete lattice-connect && pkill node",
"logs": "npx pm2 logs lattice-connect",
"test": "mocha --timeout 180000 test/integration.js",
"docker-build": "npm run build && docker build -t lattice-connect:1.0 .",
"docker-run": "docker run -d --name lattice-connect -p 3000:3000 -p 1883:1883 lattice-connect:1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GridPlus/lattice-connect.git"
},
"keywords": [
"Ethereum",
"Bitcoin",
"crypto",
"GridPlus",
"Lattice"
],
"author": "Alex Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/GridPlus/lattice-connect/issues"
},
"homepage": "https://github.com/GridPlus/lattice-connect#readme",
"dependencies": {
"aedes": "^0.42.6",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"mqtt": "^2.18.8",
"pino": "^6.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"gridplus-sdk": "^0.6.1",
"mocha": "^8.1.3",
"pm2": "^4.5.2",
"readline-sync": "^1.4.10"
}
}