-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
133 lines (133 loc) · 5.41 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "rango-client",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20",
"npm": "please-use-yarn"
},
"workspaces": {
"packages": [
"examples/*",
"widget/*",
"queue-manager/*",
"wallets/*",
"signers/*",
"logging/*"
],
"nohoist": [
"**/@types/web"
]
},
"scripts": {
"clean-root": "rimraf .parcel-cache && nx clear-cache",
"clean": "yarn clean-root && nx run-many --target=clean",
"prepare": "husky install && yarn i18n:compile",
"build:logging": "nx run-many --target=build --projects=@rango-dev/logging-*",
"build:signers": "nx run-many --target=build --projects=@rango-dev/signer-* --parallel=5",
"build:wallets": "nx run-many --target=build --projects=@rango-dev/signer-*,@rango-dev/wallets-*,@rango-dev/provider-* --exclude @rango-dev/wallets-demo --parallel=5",
"build:queue-manager": "nx run-many --target=build --projects=@rango-dev/queue-manager-* --exclude=@rango-dev/queue-manager-demo",
"build:widget": "nx run-many --target=build --projects=@rango-dev/widget-*",
"build:iframe": "nx run-many --target=build --projects=@rango-dev/widget-iframe",
"build:all": "nx run-many --target=build",
"build": "nx affected --target=build --parallel=3",
"build:non-demo": "nx affected --target=build --parallel=3 --exclude=@rango-dev/queue-manager-demo,@rango-dev/wallets-demo,@rango-dev/wallets-adapter-demo,@rango-dev/widget-app,@rango-dev/widget-playground",
"dev:ui": "nx run @rango-dev/storybook:dev",
"dev:wallets": "node ./scripts/dev-watch/command.mjs --project @rango-dev/wallets-demo",
"dev:queue-manager": "node ./scripts/dev-watch/command.mjs --project @rango-dev/queue-manager-demo",
"dev:widget:type-checker": "node ./scripts/dev-ts-check/command.mjs --project @rango-dev/widget-app",
"dev:widget:dev-server": "yarn --cwd ./widget/app/ dev",
"dev:widget": "npm-run-all --parallel dev:widget:dev-server dev:widget:type-checker",
"dev:wallets-adapter": "node ./scripts/dev-watch/command.mjs --project @rango-dev/wallets-adapter-demo",
"dev:playground:type-checker": "node ./scripts/dev-ts-check/command.mjs --project @rango-dev/widget-playground",
"dev:playground:dev-server": "yarn --cwd ./widget/playground/ dev",
"dev:playground": "npm-run-all --parallel dev:playground:dev-server dev:playground:type-checker",
"lint": "nx run-many --target=lint",
"format": "nx run-many --target=format",
"publish": "node ./scripts/publish/command.mjs",
"deploy": "node ./scripts/deploy/command.mjs",
"release-prod": "node ./scripts/release/command.mjs",
"post-release-prod": "node ./scripts/post-release/command.mjs",
"upgrade-all": "node ./scripts/upgrade-all/command.mjs --project ",
"i18n:extract": "lingui extract --clean",
"i18n:compile": "lingui compile --typescript",
"i18n": "yarn i18n:extract && yarn i18n:compile",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"commitlint": "commitlint --edit",
"postinstall": "patch-package && yarn workspace @rango-dev/signer-cosmos run patch-package"
},
"dependencies": {
"husky": "^8.0.3",
"tslib": "^2.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/core": "^7.22.5",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@faker-js/faker": "^8.4.1",
"@lingui/cli": "^4.2.1",
"@nrwl/workspace": "^15.9.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vercel/routing-utils": "^3.1.0",
"@vitest/coverage-v8": "^2.0.5",
"@testing-library/react": "^16.0.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/react-hooks": "^8.0.1",
"happy-dom": "^14.12.0",
"react-test-renderer": "^18.3.1",
"buffer": "^5.5.0",
"chalk": "^5.2.0",
"command-line-args": "^5.2.1",
"conventional-changelog-angular": "^5.0.13",
"conventional-changelog-cli": "^2.2.2",
"conventional-commits-filter": "^2.0.7",
"conventional-commits-parser": "^3.2.4",
"conventional-recommended-bump": "^6.1.0",
"crypto-browserify": "^3.12.0",
"esbuild": "^0.20.1",
"esbuild-plugins-node-modules-polyfill": "^1.6.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-id-attribute-enforcement": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^7.1.1",
"filesize": "^10.1.2",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"nx": "16.2.1",
"os-browserify": "^0.3.0",
"parcel": "^2.11.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"semver-parser": "^4.1.4",
"stream-browserify": "^3.0.0",
"tty-browserify": "^0.0.1",
"util": "^0.12.3",
"vitest": "^2.0.5",
"vm-browserify": "^1.1.2"
},
"resolutions": {
"react-refresh": "0.9.0",
"protobufjs": "^6.11.4"
},
"@parcel/resolver-default": {
"packageExports": true
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}