-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
57
58
59
60
61
{
"name": "keeco-hub",
"version": "0.1.0",
"description": "The central software which orchestrates all the hardware nodes and provides an API for the client access.",
"main": "src/index.js",
"scripts": {
"test": "jest --watchAll",
"test:coverage": "jest --collectCoverage --verbose",
"lint": "eslint 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js' 'src/**/*.graphql'",
"start": "nodemon --exec babel-node src/index.js",
"build": "cross-env NODE_ENV=production babel src -d build",
"docs": "./node_modules/.bin/jsdoc --recurse src --destination docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KEECO-HomeAutomation/keeco-hub.git"
},
"keywords": [
"home",
"automation"
],
"author": "KEECO",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/KEECO-HomeAutomation/keeco-hub/issues"
},
"homepage": "https://github.com/KEECO-HomeAutomation/keeco-hub#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0",
"babel-plugin-import-graphql": "^2.7.0",
"cross-env": "^5.2.1",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"jsdoc": "^3.6.3",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
},
"dependencies": {
"aedes": "^0.39.0",
"apollo-server": "^2.14.2",
"chalk": "^2.4.2",
"dnssd": "^0.4.1",
"graphql": "^14.5.4",
"graphql-tools": "^4.0.5",
"lodash": "^4.17.19",
"mqtt-store": "^2.1.0",
"number-ranger": "^2.0.0",
"password-hash": "^1.2.2",
"path": "^0.12.7",
"rand-token": "^0.4.0",
"sqlite3": "^4.1.0",
"uuid": "^3.3.3",
"yup": "^0.27.0"
}
}