-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.13 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
{
"name": "vcxagency-node",
"author": "ABSA Group Limited",
"version": "1.0.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"description": "Massively scalable Aries Cloud Agency with pluggable storage and transport architecture.",
"main": "src/index.js",
"scripts": {
"tag": "git tag `cat package.json | jq -r .version`",
"lint": "standard",
"lint:fix": "standard --fix",
"serve": "NODE_ENV=production node src/index.js",
"dev": "APP_CONFIG=localhost NODE_ENV=development nodemon src/index.js",
"tls": "APP_CONFIG=localhost-tls NODE_ENV=dev nodemon src/index.js",
"docker:build": "cd .. && ./dockerbuild.sh vcxagency-node --yes --build-context .",
"docker:build-publish": "cd .. && ./dockerbuild.sh vcxagency-node --push --yes --build-context .",
"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:messaging": "SILENT_WINSTON=true jest --runInBand ./test/unit/messaging"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node-persist": "^0.0.33",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"mkdirp": "^0.5.1",
"node-persist": "^3.0.5",
"nodemon": "^1.18.10",
"readline-sync": "^1.4.10",
"rimraf": "^2.6.3",
"sleep-promise": "^8.0.1",
"standard": "^14.3.4"
},
"dependencies": {
"@saleae/ffi": "^3.0.2",
"@types/node": "^8.0.47",
"@types/ref": "0.0.28",
"@types/ref-struct": "0.0.28",
"axios": "^0.19.2",
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"easy-indysdk": "file:../easy-indysdk",
"express": "^4.16.4",
"express-http-context": "^1.2.3",
"express-prettify": "^0.1.1",
"express-validation": "^1.0.2",
"express-winston": "^4.0.3",
"fs-extra": "^4.0.2",
"joi": "^14.3.1",
"lodash": "^4.17.15",
"pg": "^8.0.3",
"pgtools": "^0.3.0",
"uuid": "^3.3.2",
"vcxagency-client": "file:../vcxagency-client",
"winston": "^3.2.1"
}
}