-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 3.47 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
{
"name": "vcxagency-node",
"author": "ABSA Group Limited",
"version": "2.4.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"description": "Horizontally scalable Aries-VCX compatible mediator agency",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"serve": "NODE_ENV=production node src/index.js",
"dev:schema:migrate:all": "cd ../dbutils && npm run dev:schema:migrate:all",
"dev:ea": "npm run dev:schema:migrate:all && APP_CONFIG=localhost-ea NODE_ENV=development nodemon src/index.js",
"dev:ca": "npm run dev:schema:migrate:all && APP_CONFIG=localhost-ca NODE_ENV=development nodemon src/index.js",
"tls": "APP_CONFIG=localhost-tls NODE_ENV=dev nodemon src/index.js",
"test:perf:generatedata": "node ./test/perf/storage/generate-dataset.js",
"test:perf": "jest --runInBand ./test/perf/storage/pgstorage.perf.spec.js",
"test:unit": "SILENT_WINSTON=true jest --runInBand ./test/unit",
"test:unit:configuration": "SILENT_WINSTON=true jest --runInBand ./test/unit/configuration",
"test:unit:entities": "SILENT_WINSTON=true jest --runInBand ./test/unit/entities",
"test:unit:messaging": "SILENT_WINSTON=true jest --runInBand ./test/unit/messaging",
"test:unit:messaging:aries": "SILENT_WINSTON=true jest --runInBand ./test/unit/messaging/aries-msgs.spec.js",
"test:unit:messaging:agent": "SILENT_WINSTON=true jest --runInBand ./test/unit/messaging/agent-msgs.spec.js",
"test:unit:messaging:aconn": "SILENT_WINSTON=true jest --runInBand ./test/unit/messaging/aconn-msgs.spec.js",
"test:unit:notifications": "SILENT_WINSTON=true jest --runInBand ./test/unit/notifications",
"test:unit:notifications:longpoll": "SILENT_WINSTON=true jest --runInBand ./test/unit/notifications/longpoll.spec.js",
"test:unit:notifications:longpoll:v2": "SILENT_WINSTON=true jest --runInBand ./test/unit/notifications/longpoll-v2.spec.js",
"test:unit:notifications:adapter": "SILENT_WINSTON=true jest --runInBand ./test/unit/notifications/event-adapter-redis.spec.js",
"test:unit:notifications:service": "SILENT_WINSTON=true jest --runInBand ./test/unit/notifications/service-new-messages.spec.js",
"test:unit:notifications:service:v2": "SILENT_WINSTON=true jest --runInBand ./test/unit/notifications/service-new-messages-v2.spec.js",
"test:unit:state": "SILENT_WINSTON=true jest --runInBand ./test/unit/state",
"test:unit:storage": "SILENT_WINSTON=true jest --runInBand ./test/unit/storage/"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node-persist": "^0.0.33",
"jest": "^26.0.1",
"mkdirp": "^0.5.1",
"mysql": "^2.18.1",
"node-persist": "^3.0.5",
"nodemon": "^2.0.12",
"readline-sync": "^1.4.10",
"rimraf": "^2.6.3",
"standard": "^14.3.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.4.1",
"axios": "^0.26.1",
"body-parser": "^1.18.3",
"dbutils": "file:../dbutils",
"dotenv": "^7.0.0",
"easy-indysdk": "file:../easy-indysdk",
"express": "^4.17.1",
"express-http-context": "^1.2.3",
"express-prettify": "^0.1.1",
"express-validation": "^3.0.6",
"express-winston": "^4.0.3",
"fs-extra": "^4.0.2",
"http-proxy-middleware": "^2.0.6",
"joi": "^17.3.0",
"lodash": "^4.17.21",
"redis": "^3.0.2",
"sleep-promise": "^8.0.1",
"uuid": "^3.3.2",
"vcxagency-client": "file:../vcxagency-client",
"winston": "^3.6.0"
}
}