forked from GalaChain/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 3 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
{
"name": "@gala-chain/sdk",
"version": "2.0.1",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"scripts": {
"reset": "nx reset",
"lint": "nx run-many -t lint",
"fix": "nx run-many -t fix",
"build": "nx run-many -t build",
"madge": "nx run-many -t madge",
"test": "nx run-many -t test",
"set-version": "node unifyVersions.js",
"licenses": "license-checker --csv --customPath ./licenses/format.json > ./licenses/licenses.csv",
"typedoc-chain-api": "typedoc --tsconfig ./tsconfig.docs.json --hideGenerator --plugin typedoc-plugin-markdown --githubPages false --out ./docs/chain-api-docs ./chain-api/src && rm ./docs/chain-api-docs/README.md",
"typedoc-chain-client": "typedoc --tsconfig ./tsconfig.docs.json --hideGenerator --plugin typedoc-plugin-markdown --githubPages false --out ./docs/chain-client-docs ./chain-client/src && rm ./docs/chain-client-docs/README.md",
"typedoc-chaincode": "typedoc --tsconfig ./tsconfig.docs.json --hideGenerator --plugin typedoc-plugin-markdown --githubPages false --out ./docs/chaincode-docs ./chaincode/src && rm ./docs/chaincode-docs/README.md",
"typedoc-chain-test": "typedoc --tsconfig ./tsconfig.docs.json --hideGenerator --plugin typedoc-plugin-markdown --githubPages false --out ./docs/chain-test-docs ./chain-test/src && rm ./docs/chain-test-docs/README.md",
"typedoc-chain-connect": "typedoc --tsconfig ./tsconfig.docs.json --hideGenerator --plugin typedoc-plugin-markdown --githubPages false --out ./docs/chain-connect-docs ./chain-connect/src && rm ./docs/chain-connect-docs/README.md",
"replace-readme-docs": "find ./docs -type f -exec sed -ri 's/∙ \\[README\\]\\(README\\.md\\) //g' {} + && find ./docs -type f -exec sed -ri 's/∙ \\[README\\]\\(..\\/README\\.md\\) //g' {} +",
"prepublish": "npm run licenses"
},
"private": true,
"devDependencies": {
"@nx/eslint": "19.6.3",
"@nx/eslint-plugin": "19.6.3",
"@nx/jest": "19.6.3",
"@nx/js": "19.6.3",
"@nx/linter": "19.6.3",
"@nx/web": "19.6.3",
"@nx/workspace": "19.6.3",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "29.5.11",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-prettier-config": "^1.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"license-checker": "^25.0.1",
"nx": "19.6.3",
"prettier": "3.1.1",
"ts-jest": "29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^4.0.0-next.22",
"typescript": "5.3.3"
},
"nx": {
"includedScripts": []
},
"workspaces": [
"chain-api",
"chain-cli",
"chain-client",
"chain-connect",
"chain-test",
"chaincode"
]
}