forked from windingtree/glider-aggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "glider-aggregator",
"version": "0.0.1",
"description": "Winding Tree aggregator",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/windingtree/glider-aggregator.git"
},
"keywords": [
"Winding",
"Tree",
"Agreggator"
],
"author": "Winding Tree devs",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/windingtree/glider-aggregator/issues"
},
"homepage": "https://github.com/windingtree/glider-aggregator#readme",
"scripts": {
"localservers:start": "./scripts/localservers/start.sh",
"localservers:stop": "./scripts/localservers/stop.sh",
"dev": "now dev --listen=3001",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"test-script": "./scripts/test.sh",
"test:newman": "node ./test/newman/run.js",
"coverage": "COVERAGE=true ./scripts/test.sh",
"lint": "npx eslint test admin api decorators helpers",
"now-build": "node -r ./node_modules/dotenv/config ./scripts/build/now-build.js dotenv_config_path=./.env.build",
"build-schemas": "npx js-yaml ./public/wt-aggregator.yaml > helpers/payload/schemas/wt-aggregator-schema.json",
"install": "node -r ./node_modules/dotenv/config ./scripts/build/now-build.js dotenv_config_path=./.env.build"
},
"dependencies": {
"@elastic/elasticsearch": "7.8.0",
"@windingtree/config-profiles": "^1.0.8",
"@windingtree/org.id": "1.1.0",
"@windingtree/org.id-lif-deposit": "1.0.2",
"@windingtree/org.id-resolver": "1.4.0",
"ajv": "^6.12.4",
"amadeus": "^5.2.0",
"axios": "0.21.1",
"camaro": "6.0.3",
"chai-date-string": "^0.1.0",
"date-fns": "2.14.0",
"date-fns-tz": "1.0.10",
"email-validator": "2.0.4",
"ethers": "4.0.47",
"express": "4.17.1",
"jose": "1.27.2",
"js-yaml": "^3.14.0",
"json-rules-engine": "^5.0.4",
"libphonenumber-js": "^1.8.5",
"lodash": "^4.17.20",
"mongoose": "5.9.24",
"redis": "3.0.2",
"uuid": "8.2.0",
"web3": "1.2.11"
},
"devDependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "4.2.0",
"dotenv": "8.2.0",
"eslint": "^7.4.0",
"mocha": "^8.1.3",
"newman": "5.1.2",
"now": "19.2.0",
"nyc": "15.1.0",
"sinon": "^9.0.3",
"typescript": "^4.1.3"
},
"engines": {
"node": "12.x"
}
}