forked from Ferlab-Ste-Justine/clin-proxy-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.38 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
{
"name": "clin-proxy-api",
"version": "1.3.14",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test": "pnpm run unit-tests && pnpm run functional-tests",
"build": "babel src --out-dir dist --copy-files",
"service-auth": "node --max-old-space-size=$MEMORY_LIMIT dist/index.js --service auth",
"dev-service-auth": "nodemon --exec babel-node src/index.js --service auth",
"service-patient": "node --max-old-space-size=$MEMORY_LIMIT dist/index.js --service patient",
"service-gene": "node --max-old-space-size=$MEMORY_LIMIT dist/index.js --service gene",
"dev-service-gene": "nodemon --exec babel-node src/index.js --service gene",
"dev-service-patient": "nodemon --exec babel-node src/index.js --service patient",
"service-variant": "node --max-old-space-size=$MEMORY_LIMIT dist/index.js --service variant",
"dev-service-variant": "nodemon --exec babel-node src/index.js --service variant",
"service-meta": "node --max-old-space-size=$MEMORY_LIMIT dist/index.js --service meta",
"dev-service-meta": "nodemon --exec babel-node src/index.js --service meta",
"functional-tests": "babel-node tests/functional/runner.js",
"unit-tests": "mocha --require @babel/register 'tests/unit/**.js'"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.1",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.4.5",
"@elastic/elasticsearch": "^7.1.0",
"@hapi/joi": "^15.0.3",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"cookie": "^0.3.1",
"deasync": "^0.1.15",
"dotenv": "^7.0.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"jsonwebtoken": "^8.5.1",
"liquid-json": "^0.3.1",
"lodash": "^4.17.15",
"memcached-promisify": "^2.0.0",
"mime-types": "^2.1.26",
"mocha": "^6.2.0",
"newman": "^4.6.1",
"nodemon": "^1.18.10",
"pnpm": "^3.0.1",
"postman-collection": "^3.4.7",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"restify": "^8.1.1",
"restify-cors-middleware": "^1.1.1",
"restify-errors": "^7.0.0",
"restify-joi-middleware": "^5.0.1",
"restify-jwt-community": "1.0.13",
"uniqid": "^5.0.3",
"yargs": "^13.2.2"
}
}