forked from shapeshift/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.52 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
{
"name": "@shapeshiftoss/hdwallet",
"private": true,
"repository": "https://github.com/shapeshift/hdwallet",
"author": "ShapeShift Open Source <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"integration"
],
"nohoist": [
"**/examples/test/**"
]
},
"scripts": {
"clean": "lerna run clean --scope @shapeshiftoss/* && rm -rf coverage test-report node_modules && yarn cache clean",
"lint": "eslint --cache --max-warnings=0 .",
"lint:fix": "yarn lint --fix",
"lint:ts": "tsc --noEmit",
"format": "prettier .",
"build": "yarn tsc --build",
"dev:all": "yarn tsc --build --watch",
"dev:sandbox": "cd examples/sandbox && yarn dev",
"docker:run:emulator": "docker run -p 5000:5000 kktech/kkemu:latest",
"docker:stop:run:emulator": "docker stop $(docker ps -a -q --filter ancestor=kktech/kkemu:latest --format=\"{{.ID}}\") && docker run -p 5000:5000 kktech/kkemu:latest",
"vercel-install": "yarn install --frozen-lockfile",
"vercel-build": "lerna run build --scope @shapeshiftoss/hdwallet-core && lerna run build --scope hdwallet-sandbox --ignore @shapeshiftoss/hdwallet-keepkey-nodehid --include-filtered-dependencies && mkdir -p ./public && cp -R ./examples/sandbox/public/. ./public/",
"test": "yarn jest --verbose --config jest.config.js",
"test:integration": "yarn jest -c integration/jest.config.js",
"lerna:version-alpha": "lerna version prerelease --force-publish --no-push --exact --yes",
"lerna:version-patch": "lerna version patch --force-publish --no-push --exact --yes",
"lerna:version-minor": "lerna version minor --force-publish --no-push --exact --yes",
"lerna:version-major": "lerna version major --force-publish --no-push --exact --yes",
"lerna:publish": "lerna publish --pre-dist-tag alpha from-package",
"postinstall": "patch-package"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fake-indexeddb": "^3.1.7",
"jest": "^26.6.3",
"jest-environment-jsdom": "^25.5.0",
"jest-junit": "^12.0.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"ts-jest": "^26.5.5",
"typescript": "^4.3.2"
},
"dependencies": {
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0"
}
}