-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 3.71 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
91
92
{
"name": "vechain-sdk",
"description": "The official JavaScript SDK for vechain",
"repository": {
"type": "git",
"url": "git+https://github.com/vechain/vechain-sdk.git"
},
"author": "VeChain Foundation",
"license": "MIT",
"keywords": [
"VeChain",
"thor",
"sdk",
"blockchain",
"dapp",
"web3"
],
"private": true,
"workspaces": [
"packages/*",
"docs",
"apps/*"
],
"packageManager": "[email protected]",
"scripts": {
"start-thor-solo": "echo 'Starting thor solo node ...' && docker compose -f docker-compose.thor.yml up -d --wait && echo '\nThor solo node started ...'",
"stop-thor-solo": "echo 'Stopping thor solo node ...' && docker compose -f docker-compose.thor.yml down && echo 'Thor solo node stopped ...'",
"postinstall": "husky",
"build": "turbo build",
"check:circular-dependencies": "turbo check:circular-dependencies",
"pre-release": "ts-node scripts/pre-release.ts",
"test-rpc-proxy": "ts-node scripts/test-rpc-proxy.ts",
"generate:apidocs": "typedoc --options typedoc.json --logLevel Error",
"generate:apidocs-debug": "typedoc --options typedoc.json --logLevel Verbose --plugin typedoc-plugin-missing-exports --validation.notDocumented",
"lint": "turbo lint",
"format": "turbo format",
"test:unit": "turbo test:unit",
"test:integration": "turbo test:integration",
"test:integration:solo": "(yarn start-thor-solo && yarn test:integration && yarn stop-thor-solo) || yarn stop-thor-solo",
"test:examples": "turbo test:examples",
"test:examples:solo": "(yarn start-thor-solo && yarn test:examples && yarn stop-thor-solo) || yarn stop-thor-solo",
"test": "turbo test --force && yarn merge-coverage",
"test:browser": "turbo test:browser --force && yarn merge-coverage",
"test:solo": "(yarn start-thor-solo && yarn test && yarn stop-thor-solo) || yarn stop-thor-solo",
"test:browser:solo": "(yarn start-thor-solo && yarn test:browser && yarn stop-thor-solo) || yarn stop-thor-solo",
"merge-coverage": "ts-node scripts/merge-coverage.ts",
"check:tests-naming": "ts-node scripts/check-tests-naming.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@types/fs-extra": "^11.0.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-n": "^17.13.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "2.0.2",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"globals": "^15.12.0",
"hardhat": "^2.22.15",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-docblock": "^29",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-runner": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"turbo": "^2.2.3",
"typedoc": "^0.26.8",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"peerDependencies": {
"hardhat": "^2.22.15"
},
"version": "1.22.22"
}