-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
{
"name": "hts-lb",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint .",
"start": "concurrently \"PORT=3001 node .\" \"cd ./client-src && npm start\" \"cd ./redis && node redis.js\"",
"posttest": "npm run lint && nsp check",
"test-e2e": "nightwatch",
"unit-tests": "./node_modules/.bin/mocha -w unit-tests/",
"build": "cd client-src && node ./node_modules/.bin/react-scripts --max-old-space-size=2000 build && cp -r build/* ../client/",
"production": "concurrently \"PORT=3000 node .\" \"cd ./redis && node redis.js\"",
"discover-models": "./node_modules/.bin/loopback-discovery -d hts ."
},
"dependencies": {
"async": "^2.6.0",
"axios": "^0.18.0",
"bcrypt": "^1.0.3",
"bfj": "^5.1.1",
"body-parser": "~1.18.2",
"chokidar": "^1.7.0",
"chunk": "0.0.2",
"compression": "^1.0.3",
"concurrently": "^3.5.1",
"cookie-parser": "~1.4.3",
"cors": "^2.5.2",
"elasticsearch": "^14.0.0",
"elasticsearch-streams": "^0.0.10",
"express": "~4.15.5",
"glob": "^7.1.2",
"helmet": "^1.3.0",
"live-mutex": "^0.0.10028",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^5.0.0",
"loopback-connector-mysql": "^2.4.1",
"loopback-discovery": "^1.0.6",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"node-mutex": "^0.2.2",
"node-rest-client": "^3.1.0",
"oboe": "^2.1.4",
"react-file-download": "^0.3.5",
"redis-server": "^1.1.0",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0",
"uuid": "^3.1.0",
"x2js": "^3.1.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"mocha": "^4.1.0",
"nightwatch": "^0.9.19",
"nsp": "^2.1.0"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "hts-lb",
"proxy": "http://localhost:3000"
}