-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.62 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.62 KB
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
{
"name": "cysync",
"version": "1.0.0",
"description": "Cypherock CySync desktop application",
"private": true,
"author": {
"name": "Cypherock",
"email": "support@cypherock.com"
},
"scripts": {
"start": "cross-env NODE_OPTIONS=--max_old_space_size=8192 node scripts/watch/index.js",
"dev": "turbo dev --no-daemon --filter @cypherock/cysync-desktop",
"dev:cli": "bash scripts/devCli.sh",
"make": "turbo make --no-daemon --filter @cypherock/cysync-desktop",
"make:cli": "turbo make --no-daemon --filter @cypherock/cysync-cli",
"build": "turbo build --no-daemon",
"build:cli": "turbo build --no-daemon --filter @cypherock/cysync-cli",
"build:dirty": "turbo build:dirty --no-daemon",
"dev:setup": "turbo dev:setup --no-daemon",
"lint": "turbo run lint --no-daemon",
"pretty": "pnpm pretty:root && turbo run pretty --no-daemon",
"pretty:root": "prettier --write scripts *.json",
"pretty:root:check": "prettier --check scripts *.json",
"lint:check": "turbo run lint:check --no-daemon",
"pretty:check": "pnpm pretty:root:check && turbo run pretty:check --no-daemon",
"test": "cross-env NODE_ENV=test turbo run test --no-daemon --concurrency=50% && pnpm aggregate:report",
"aggregate:report": "cross-env NODE_ENV=test node scripts/aggregateReport.js",
"e2e": "cross-env NODE_OPTIONS=--max_old_space_size=8192 turbo run e2e --no-daemon",
"pre-commit": "turbo run pre-commit --concurrency=1 --no-daemon",
"prepare": "husky install",
"clean": "node scripts/clean.js && bash ./scripts/clean.sh",
"clean:force": "node scripts/clean.js -f && bash ./scripts/clean.sh",
"build:submodules": "node scripts/submodules.js build",
"ci:publish": "pnpm publish -r --access public --no-git-checks --filter \"@cypherock/coins\"",
"ci:version": "pnpm changeset version && pnpm i --no-frozen-lockfile",
"storybook": "turbo storybook --no-daemon",
"build:storybook": "turbo build:storybook --no-daemon",
"fix:hashbang": "bash scripts/hashBangFix.sh",
"erc20-diff": "turbo run erc20-diff --no-daemon",
"gen-erc20-list": "turbo run gen-erc20-list --no-daemon",
"download-erc20-images": "turbo run download-erc20-images --no-daemon",
"gen-translations": "turbo run gen-translations --no-daemon"
},
"keywords": [],
"license": "AGPL-3.0",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@cypherock/prettier-config": "workspace:^",
"chalk": "^5.2.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"nyc": "15.1.0",
"ora": "^6.3.1",
"punycode": "^2.3.1",
"semver": "^7.5.3",
"turbo": "^1.13.4",
"url": "^0.11.0",
"watch": "^1.0.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.6.0",
"pnpm": {
"patchedDependencies": {
"crc@3.8.0": "patches/crc@3.8.0.patch",
"bip66@1.1.5": "patches/bip66@1.1.5.patch",
"bitcoinjs-lib@6.1.3": "patches/bitcoinjs-lib@6.1.3.patch",
"coinselect@3.1.13": "patches/coinselect@3.1.13.patch",
"signal-exit@4.1.0": "patches/signal-exit@4.1.0.patch",
"@solana/web3.js@1.87.6": "patches/@solana__web3.js@1.87.6.patch",
"borc@2.1.2": "patches/borc@2.1.2.patch",
"sha.js@2.4.11": "patches/sha.js@2.4.11.patch",
"base-x@3.0.11": "patches/base-x@3.0.11.patch",
"math-intrinsics@1.1.0": "patches/math-intrinsics@1.1.0.patch",
"dunder-proto@1.0.1": "patches/dunder-proto@1.0.1.patch"
},
"overrides": {
"write-file-atomic": "5.0.1",
"signal-exit": "4.1.0"
}
}
}