forked from wallet-ui/wallet-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.7 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.7 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
87
{
"name": "wallet-ui-monorepo",
"private": true,
"workspaces": [
"docs/*",
"packages/*"
],
"scripts": {
"build": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} build",
"changeset:publish": "turbo publish-packages --concurrency=${TURBO_CONCURRENCY:-95.84%} && echo 'published=true' >> $GITHUB_OUTPUT",
"clean": "find . -type d \\( -name 'node_modules' -o -name 'android' -o -name 'build' -o -name 'dist' -o -name '.turbo' -o -name '.wxt' -o -name '.expo' -o -name '.astro' -o -name '.wrangler' \\) -prune -exec rm -rf '{}' +",
"compile": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} compile:js compile:typedefs",
"lint": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:lint",
"style:fix": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} style:fix && pnpm prettier --log-level warn --ignore-unknown --write '{.,!packages}/*'",
"test": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:unit:browser test:unit:node",
"test:live-with-test-validator": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:live-with-test-validator",
"test:live-with-test-validator:setup": "./scripts/setup-test-validator.sh"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.36.0",
"@eslint/json": "^0.13.2",
"@solana/eslint-config-solana": "^5.0.0",
"@solana/prettier-config-solana": "0.0.5",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@wallet-ui/build-scripts": "workspace:*",
"@wallet-ui/test-config": "workspace:*",
"@wallet-ui/test-matchers": "workspace:*",
"@wallet-ui/tsconfig": "workspace:*",
"agadoo": "^3.0.0",
"bundlemon": "^3.1.0",
"eslint": "^9.36.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"jest": "30.0.0-alpha.6",
"jest-environment-jsdom": "30.0.0-alpha.6",
"jest-runner-eslint": "^2.2.1",
"jest-runner-prettier": "^1.0.0",
"jest-watch-master": "^1.0.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^3.0.1",
"pkg-pr-new": "^0.0.60",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20.18.0",
"npm": "please-use-pnpm",
"pnpm": "^10",
"yarn": "please-use-pnpm"
},
"packageManager": "[email protected]+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"pnpm": {
"overrides": {
"agadoo>rollup": "^4",
"conventional-changelog-conventionalcommits": ">= 8.0.0",
"dset@<3.1.4": "^3.1.4",
"jsdom": "^22",
"mock-socket": "^9.3.1",
"shelljs": ">=0.8.5"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver",
"workerd"
]
},
"prettier": "@solana/prettier-config-solana"
}