-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.88 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
{
"name": "hyperledger-typescript-boilerplate",
"version": "1.2.0",
"description": "",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:watch": "nodemon",
"build": "tsc -p ./tsconfig.json",
"start:prod": "node dist/server.js",
"lint": "tslint --fix -c tslint.json './src/**/*.ts'",
"pretest": "npm run lint",
"clean": "rm -rf node_modules && rm -rf dist",
"test": "cross-env NODE_ENV=test cross-env jest --config jest.json",
"test:watch": "cross-env NODE_ENV=test jest --watch --config jest.json",
"test:cov": "cross-env NODE_ENV=test jest --coverage --config jest.json",
"test:e2e": "cross-env SKIP_MIDDLEWARE=true NODE_ENV=test jest --config=e2e/jest-e2e.json --forceExit",
"test:all": "npm run test:cov && npm run test:e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wearetheledger/hyperledger-typescript-boilerplate.git"
},
"author": "theledger",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearetheledger/hyperledger-typescript-boilerplate/issues"
},
"homepage": "https://github.com/wearetheledger/hyperledger-typescript-boilerplate#readme",
"dependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/core": "^5.0.0",
"@nestjs/microservices": "^5.0.0",
"@nestjs/swagger": "^2.0.2",
"@nestjs/testing": "^5.0.0",
"@nestjs/websockets": "^5.0.0",
"auth0": "^2.9.1",
"aws-sdk": "^2.140.0",
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"class-transformer": "^0.1.9",
"class-validator": "^0.8.5",
"dotenv": "^5.0.1",
"express-jwt": "^5.3.0",
"fabric-ca-client": "^1.1.2",
"fabric-client": "^1.1.2",
"flat": "^4.1.0",
"grpc": "^1.8.4",
"husky": "^0.15.0-rc.8",
"jwks-rsa": "^1.2.1",
"jwt-decode": "^2.2.0",
"object-hash": "^1.2.0",
"path": "^0.12.7",
"pusher": "^2.0.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.0.0",
"sqs-consumer": "^3.7.0",
"winston": "^3.0.0",
"winston-daily-rotate-file": "^3.2.1"
},
"devDependencies": {
"@types/auth0-js": "^8.11.2",
"@types/body-parser": "^1.16.8",
"@types/bytebuffer": "^5.0.37",
"@types/express": "^4.0.37",
"@types/express-jwt": "0.0.40",
"@types/express-serve-static-core": "4.16.0",
"@types/flat": "^0.0.28",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^10.3.0",
"@types/object-hash": "^1.1.0",
"@types/supertest": "^2.0.4",
"@types/winston": "^2.3.7",
"@types/yup": "^0.24.7",
"cross-env": "^5.2.0",
"jasmine": "^3.1.0",
"jest": "^23.1.0",
"nodemon": "^1.12.1",
"supertest": "^3.0.0",
"ts-jest": "^22.4.6",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.4.0",
"tslint": "5.10.0",
"typescript": "^2.5.2"
},
"engines": {
"node": "^8.9",
"npm": "^5.6"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}