-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "@vocdoni/ui",
"version": "0.0.2",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/vocdoni/ui-components",
"bugs": "https://github.com/vocdoni/ui-components/issues",
"description": "Vocdoni UI components and related packages",
"main": "index.js",
"private": true,
"devDependencies": {
"@swc/core": "^1.3.78",
"@swc/helpers": "^0.5.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@vitest/coverage-v8": "^4.0.16",
"clean-package": "^2.2.0",
"eslint-plugin-testing-library": "5.5.1",
"ethers": "^5.7.0",
"jsdom": "^27.4.0",
"msw": "^1.3.0",
"prettier": "^2.8.7",
"tsup": "^8.0.1",
"turbo": "^1.8.6",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.16"
},
"peerDependencies": {
"react": ">=17.0.0 <19.0.0"
},
"scripts": {
"build": "turbo build --filter=@vocdoni*",
"lint:fix": "prettier -c . --write",
"lint": "turbo lint && prettier -c .",
"clean": "turbo clean --filter=@vocdoni* && rm -fr node_modules",
"test": "turbo test --filter=@vocdoni/* --filter=!@vocdoni/ui-scaffold"
},
"engines": {
"node": ">= 20"
},
"pnpm": {
"overrides": {
"@types/react": "18.x",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.37.1",
"@wagmi/core": "^2.22.1",
"@tanstack/react-query": "^5.90.21"
},
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
},
"packageManager": "pnpm@10.26.2"
}