-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 2.74 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "protocol-common",
"version": "1.1.3",
"description": "Common code for kiva protocol webservices",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/kiva/protocol-common#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kiva/protocol-common.git",
"directory": ""
},
"keywords": [
"kiva",
"protocol",
"SSI",
"hyperledger"
],
"author": "protocol-services",
"exports": {
".": "./index.js",
"./validation": "./validation/index.js"
},
"files": [
"*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rm -rf dist && npm run build:js && npm run build:dts && cp package.json dist/",
"build:js": "tsc",
"build:dts": "dts-bundle-generator --config dts.json",
"build:pack": "npm run build && cd dist/ && npm pack",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node -r dotenv/config node_modules/.bin/jest --runInBand",
"setup": "npm run build && cd dist && npm link && cd ..",
"teardown": "cd dist && npm unlink && cd .."
},
"dependencies": {
"@nestjs/axios": "^0.0.7",
"@nestjs/common": "^8.2.0",
"@nestjs/core": "^8.2.0",
"@nestjs/platform-express": "^8.2.0",
"axios": "^0.26.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cls-hooked": "^4.2.2",
"crypto-js": "^4.1.1",
"crypto-random-string": "^4.0.0",
"dd-trace": "^2.5.0",
"dotenv": "^10.0.0",
"jaeger-client": "^3.19.0",
"nestjs-pino": "^2.5.2",
"opentracing": "^0.14.5",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1",
"pino-http": "^6.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@nestjs/testing": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"dts-bundle-generator": "^6.9.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^38.1.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"tslint-config-prettier": "^1.18.0"
},
"jest": {
"globals": {
"factories": {}
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".(e2e-spec|spec).ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}