-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "crownstone-hub",
"version": "0.29.1",
"description": "Hub platform of Crownstone",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"bin": {
"runHub": "execute.js"
},
"engines": {
"node": ">=14.5.0"
},
"scripts": {
"build": "rimraf ./dist && lb-tsc",
"dev": "lb-tsc --watch",
"test": "jest --useStderr",
"coverage": "jest --collect-coverage --collectCoverageFrom=src/**/*",
"migrate": "node ./dist/migrate",
"start": "node execute.js",
"debug": "node --unhandled-rejections=strict execute.js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^9.0.2",
"@loopback/authorization": "^0.12.2",
"@loopback/boot": "^5.0.2",
"@loopback/context": "^5.0.2",
"@loopback/core": "^4.0.2",
"@loopback/openapi-v3": "^8.0.2",
"@loopback/repository": "^5.0.2",
"@loopback/rest": "^12.0.2",
"@loopback/rest-explorer": "^5.0.2",
"@loopback/security": "^0.8.2",
"@loopback/service-proxy": "^5.0.2",
"cors": "^2.8.5",
"crownstone-cloud": "^0.29.1",
"crownstone-core": "0.25.0",
"crownstone-logger": "^0.1.4",
"crownstone-sse": "^5.3.0",
"crownstone-uart": "0.25.0",
"helmet": "^4.2.0",
"loopback-connector-mongodb": "^5.4.0",
"mongodb": "^3.6.2",
"tslib": "^2.2.0",
"node-uuid": "^1.4.8"
},
"devDependencies": {
"@loopback/build": "^6.2.7",
"@loopback/eslint-config": "^10.0.3",
"@loopback/testlab": "^3.2.9",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"debug-level": "^0.3.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-plugin": "^2.2.2",
"eslint-plugin-mocha": "^7.0.1",
"jest": "^26.6.3",
"jest-date-mock": "^1.0.8",
"nodemon": "^2.0.4",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.6",
"typescript": "4.8.4"
}
}