-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.63 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.63 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
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
{
"name": "@ledgerhq/ledger-wallet-provider-workspace",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"commit": "gitmoji -c",
"danger:local": "pnpm danger local --dangerfile tools/danger/danger-local.ts --base origin/develop",
"danger:local:fork": "pnpm danger local --dangerfile tools/danger/danger-local-fork.ts --base origin/develop",
"danger:ci": "pnpm danger ci --dangerfile tools/danger/danger-ci.ts --failOnErrors",
"provider": "pnpm --filter @ledgerhq/ledger-wallet-provider",
"provider-core": "pnpm --filter @ledgerhq/ledger-wallet-provider-core",
"doc": "pnpm --filter @ledgerhq/ledger-wallet-provider-docs",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"pnpm provider exec nx build-storybook --quiet && pnpm provider exec http-server storybook-static -p 4200 --silent\" \"wait-on tcp:4200 && pnpm provider exec nx test-storybook\"",
"test:coverage": "pnpm nx run-many -t test -- --coverage --coverage.reporter=html --coverage.reporter=text",
"prerelease": "pnpm nx run-many -t build --projects=ledger-wallet-provider,ledger-wallet-provider-core",
"release": "pnpm nx release publish",
"version:minor": "pnpm nx release version minor --git-tag",
"version:major": "pnpm nx release version major --git-tag",
"version:patch": "pnpm nx release version patch --git-tag",
"version:prerelease": "pnpm nx release version prerelease --preid pre"
},
"private": true,
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-react": "catalog:",
"@eslint/compat": "catalog:",
"@eslint/eslintrc": "catalog:",
"@eslint/js": "catalog:",
"@lit/context": "catalog:",
"@next/eslint-plugin-next": "catalog:",
"@nx/devkit": "catalog:",
"@nx/eslint": "catalog:",
"@nx/eslint-plugin": "catalog:",
"@nx/jest": "catalog:",
"@nx/js": "catalog:",
"@nx/next": "catalog:",
"@nx/playwright": "catalog:",
"@nx/react": "catalog:",
"@nx/storybook": "catalog:",
"@nx/vite": "catalog:",
"@nx/web": "catalog:",
"@playwright/test": "catalog:",
"@storybook/addon-coverage": "catalog:",
"@storybook/addon-docs": "catalog:",
"@storybook/react-vite": "catalog:",
"@storybook/test-runner": "catalog:",
"@storybook/web-components": "catalog:",
"@storybook/web-components-vite": "catalog:",
"@swc-node/register": "catalog:",
"@swc/cli": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@testing-library/dom": "catalog:",
"@testing-library/react": "catalog:",
"@types/jsonwebtoken": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:react19",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"autoprefixer": "catalog:",
"class-variance-authority": "catalog:",
"concurrently": "catalog:",
"danger": "catalog:",
"eslint": "catalog:",
"eslint-config-next": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-jsx-a11y": "catalog:",
"eslint-plugin-playwright": "catalog:",
"eslint-plugin-react": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-simple-import-sort": "catalog:",
"eslint-plugin-storybook": "catalog:",
"fake-indexeddb": "catalog:",
"gitmoji-cli": "catalog:",
"happy-dom": "catalog:",
"http-server": "catalog:",
"jiti": "catalog:",
"jsonc-eslint-parser": "catalog:",
"lit": "catalog:",
"nx": "catalog:",
"postcss": "catalog:",
"prettier": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"shadow-dom-testing-library": "catalog:",
"storybook": "catalog:",
"swc-loader": "catalog:",
"tailwindcss": "catalog:",
"ts-jest": "catalog:",
"ts-node": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"verdaccio": "catalog:",
"vite": "catalog:",
"vite-plugin-dts": "catalog:",
"vite-plugin-elm": "catalog:",
"vitest": "catalog:",
"wait-on": "catalog:"
},
"dependencies": {
"chalk": "catalog:",
"lottie-web": "catalog:",
"motion": "catalog:",
"next": "catalog:",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"rxjs": "catalog:",
"tslib": "catalog:"
},
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}
}