-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 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
{
"name": "fabric-es",
"version": "0.7.8",
"license": "MIT",
"scripts": {
"cp:root": "rimraf .build && mkdir -p ./.build && cp ./package.json .build",
"tsc:lib": "lerna run tsc:prod --scope={@fabric-es/fabric-cqrs,@fabric-es/operator,@fabric-es/gateway-lib}",
"tsc:all": "lerna run build",
"build:gw-dev-net:org1": "cd ./deployments/dev-net && ./build-gw.sh org1",
"build:gw-dev-net:org2": "cd ./deployments/dev-net && ./build-gw.sh org2",
"build:gw-dev-net:org3": "cd ./deployments/dev-net && ./build-gw.sh org3",
"bootstrap:fab": "cd ./deployments/dev-net && ./dn-run.sh 2",
"build-run-test:fab": "cd ./deployments/dev-net && ./dn-run.sh 2 gw-org test",
"shutdown": "cd ./deployments/dev-net && ./cleanup.sh",
"unit-test": "lerna run unit-test:fab --stream --scope={@fabric-es/fabric-cqrs,@fabric-es/operator,@fabric-es/gateway-lib,@fabric-es/model-*}",
"lint:lib": "lerna run lint --stream --scope={@fabric-es/fabric-cqrs,@fabric-es/gateway-lib,@fabric-es/operator,@fabric-es/tester}",
"lint:app": "lerna run lint --stream --scope={@fabric-es/gw-org*,@fabric-es/model-*}",
"publish:lib": "lerna run publish --scope={@fabric-es/fabric-cqrs,@fabric-es/gateway-lib,@fabric-es/operator}",
"version:patch": "lerna version patch --force-publish",
"typedoc": "typedoc --theme ./node_modules/typedoc-neo-theme/bin/default"
},
"workspaces": [
"packages/*"
],
"private": true,
"devDependencies": {
"@types/node": "^12.12.41",
"@types/bytebuffer": "^5.0.34",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-standard": "^4.0.1",
"json-to-pretty-yaml": "^1.2.2",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typedoc": "^0.22.13",
"typedoc-plugin-lerna-packages": "^0.3.1",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.6.2"
},
"prettier": {
"eslintIntegration": true,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"bracketSpacing": true,
"jsxBracketSameLine": true,
"requirePragma": false,
"insertPragma": false,
"printWidth": 100
}
}