This repository was archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 KB
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
{
"name": "app",
"version": "1.4.0",
"private": true,
"main": "/dist/server.js",
"scripts": {
"lint": "tslint -c tslint.json 'server/**/*.ts'",
"build": "NODE_CONFIG_DIR=./server/config tsc -p ./tsconfig.json",
"start": "NODE_CONFIG_DIR=./server/config node dist/server.js",
"dev": "FABRIC_ENROLL_ID=admin FABRIC_ENROLL_SECRET=adminpw NODE_CONFIG_DIR=./server/config ts-node-dev -P ./tsconfig.json server/server.ts",
"test": "FABRIC_ENROLL_ID=test FABRIC_ENROLL_SECRET=testpw NODE_CONFIG_DIR=./test/mocks/config jest --i --verbose --collectCoverage --forceExit"
},
"dependencies": {
"@blockchainlabs/ibm-certificate-manager-wallet": "0.0.3",
"@hapi/joi": "^16.1.1",
"body-parser": "^1.18.3",
"config": "^2.0.1",
"express": "~4.16.0",
"fabric-ca-client": "1.4.0",
"fabric-client": "1.4.0",
"fabric-network": "1.4.0",
"http-errors": "~1.6.2",
"ibm-cloud-env": "^0.2.6",
"ibmcloud-appid": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"log4js": "^5.0.0",
"passport": "^0.4.0",
"swagger-ui-express": "^4.0.2",
"typescript": "^3.5.3",
"yamljs": "^0.3.0"
},
"engines": {
"node": "8.11.x",
"npm": "5.6.x"
},
"devDependencies": {
"@types/config": "0.0.34",
"@types/express": "^4.17.0",
"@types/http-errors": "^1.6.1",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.3",
"@types/passport": "^1.0.0",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^3.0.1",
"@types/yamljs": "^0.2.30",
"bluebird": "3.5.4",
"jest": "^24.9.0",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.12",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.18.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"reporters": [
"default"
]
}
}