-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.51 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
{
"name": "fablo-rest",
"version": "0.1.2",
"description": "REST API client for Hyperledger Fabric CA and chaincodes",
"author": {
"name": "Jakub Dzikowski",
"email": "[email protected]",
"url": "https://dzikowski.online"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fablo-io/fablo-rest.git"
},
"keywords": [
"hyperledger fabric",
"chaincode",
"smart contract",
"rest"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/fablo-io/fablo-rest/issues"
},
"homepage": "https://github.com/fablo-io/fablo-rest#readme",
"main": "src/index.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"start": "HFC_LOGGING='{\"debug\":\"console\"}' nodemon src/index.ts",
"build": "rollup -c && tsc",
"start-dist": "NODE_ENV=production node dist/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test-e2e": "jest -i ./e2e",
"test": "jest ./src",
"test-once": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint --fix",
"pre-push": "npm run build"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.1.1",
"@types/cors": "^2.8.12",
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.38.4",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"peerDependencies": {},
"dependencies": {
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.168",
"@types/uuid": "^8.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"fabric-ca-client": "^2.2.8",
"fabric-client": "^1.4.18",
"fabric-network": "^2.2.8",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"ts-matches": "^4.0.2",
"uuid": "^8.3.2",
"winston": "^2.4.5"
}
}