-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
77 lines (77 loc) · 2.68 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
{
"name": "liquality",
"version": "1.6.0",
"description": "Common library for liquality wallet",
"repository": "[email protected]:liquality/wallet-core.git",
"author": "monokh <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/types": "^7.17.0",
"@changesets/cli": "^2.24.3",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/amplitude-js": "^8.16.0",
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.3.3",
"@types/chrome": "^0.0.179",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "^26.1.1",
"husky": "^8.0.1",
"jest": "^27.5.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pinst": "^3.0.0",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"turbo": "^1.4.3",
"typescript": "^4.5.5"
},
"scripts": {
"build": "turbo run build --no-cache",
"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",
"clean": "yarn workspaces foreach run clean && rm -rf node_modules ",
"test": "turbo run test",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"changeset": "changeset",
"version": "yarn changeset version",
"changeset-prerelease-enter": "changeset pre exit && changeset pre enter next",
"version-packages": "changeset version",
"release": "yarn workspaces foreach --from '@liquality/*' npm publish --access public",
"release-beta": "yarn workspaces foreach --from '@liquality/*' npm publish --tag beta --access public",
"build-release": "yarn build --force && yarn release",
"build-prerelease": "yarn build --force && yarn release-beta",
"build-release-new": "yarn build --force && changeset publish --yes"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"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"
}
}