-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
75 lines (75 loc) · 3.17 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
{
"name": "chainify",
"version": "1.0.10",
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@ledgerhq/hw-transport-node-hid": "6.24.1",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"ethers": "5.7.0",
"ganache": "^7.0.3",
"hardhat": "^2.8.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"markdown-table": "^3.0.2",
"mocha": "^9.2.0",
"plop": "^3.0.5",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"turbo": "^1.2.14",
"typechain": "^7.0.0",
"typedoc": "^0.22.13",
"typedoc-github-wiki-theme": "^1.0.0",
"typedoc-plugin-markdown": "^3.11.14",
"typedoc-plugin-missing-exports": "^0.22.6",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.5.5"
},
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"env:integration": "docker-compose -f test/integration/environment/btc/docker-compose.yaml up -d --force-recreate --renew-anon-volumes",
"env:integration:bootup": "sleep 10",
"test": "yarn env:integration && yarn env:integration:bootup && yarn test:integration",
"test:integration": "yarn build && cross-env NODE_ENV=test TS_NODE_PROJECT=test/tsconfig.json TS_NODE_FILES=true mocha --exit test/integration/index.ts",
"build": "yarn turbo run build --filter=@chainify/evm-contracts && turbo run build --concurrency=10 --filter=!@chainify/evm-contracts",
"clean": "yarn workspaces foreach run clean && rm -rf node_modules ",
"lint": "yarn lint:ts && yarn prettier:check",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier:check": "prettier --check \"**/*.{js,json,sol,ts}\"",
"prettier:fix": "prettier --write ./packages",
"changeset": "changeset",
"version": "yarn changeset version",
"release": "yarn workspaces foreach --from '@chainify/*' npm publish --access public",
"build-release": "yarn build --force && yarn release",
"release:beta": "yarn release --tag beta",
"docs": "typedoc"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"resolutions": {
"@ledgerhq/devices": "7.0.7",
"@ledgerhq/hw-transport": "6.27.10",
"@ledgerhq/hw-transport-webhid": "6.27.10",
"@ledgerhq/cryptoassets": "7.3.0",
"@ledgerhq/hw-app-eth": "6.30.5",
"@ledgerhq/hw-app-btc": "9.1.2"
}
}