-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.32 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
{
"name": "@hyperledgendary/runhfsc-web",
"version": "0.0.2",
"description": "Simple CLI for testing transactions",
"bin": {
"runhfscweb": "dist/main.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"{src,test,clientsrc}/**/*.ts\"",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "npm run format && npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc -p src --pretty && tsc -p clientsrc --pretty && npm run bundle",
"release": "standard-version",
"start": "node dist/app.js | pino-pretty",
"bundle": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperledgendary/runhfsc"
},
"keywords": [
"fabric-ledger",
"Hyperledger Fabric",
"Fabric Ledger"
],
"author": "",
"license": "Apache 2.0",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/markdown-it": "12.2.3",
"@types/node": "^17.0.23",
"@types/nunjucks": "^3.2.1",
"@types/prettyjson": "^0.0.30",
"@types/pty.js": "^0.2.36",
"@types/socket.io": "^3.0.2",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@types/pino": "^6.3.8",
"@types/pino-http": "^5.4.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"pino-pretty": "^5.0.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"rollup": "^2.70.1",
"typescript": "^4.6.3"
},
"dependencies": {
"debug": "^4.3.4",
"env-var": "^7.1.1",
"express": "^4.17.3",
"express-ws": "^5.0.2",
"markdown-it": "^12.3.2",
"node-pty": "^0.10.1",
"nunjucks": "^3.2.3",
"socket.io": "^4.4.1",
"source-map-support": "^0.5.21",
"xterm": "4.18.0",
"xterm-addon-attach": "^0.6.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-search": "^0.8.2",
"xterm-addon-web-links": "^0.5.1",
"yargs": "^17.4.0",
"pino": "^6.11.3",
"pino-http": "^5.5.0",
"dotenv": "^10.0.0" , "http-status-codes": "^2.1.4"
},
"engines": {
"node": ">=16.0.0"
}
}