-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.8 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.8 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
{
"name": "crossmint-sdk",
"private": true,
"repository": "https://github.com/Crossmint/crossmint-sdk",
"license": "Apache-2.0",
"author": "Paella Labs Inc",
"scripts": {
"build": "pnpm turbo build",
"build:apps": "pnpm turbo --filter \"./apps/**\" build",
"build:libs": "pnpm turbo --filter \"./packages/**\" build",
"build:libs:prod": "cross-env NODE_ENV=production pnpm build:libs",
"change:add": "pnpm changeset add",
"change:publish": "pnpm build:libs:prod && pnpm changeset publish --no-git-tag",
"change:version": "pnpm changeset version && pnpm lint:fix",
"clean:dist": "pnpm rimraf \"**/dist\" --glob",
"clean:next": "pnpm rimraf \"**/.next\" --glob",
"clean:node_modules": "pnpm dlx rimraf \"**/node_modules\" --glob",
"lint": "biome check --diagnostic-level=error --max-diagnostics=200",
"lint:fix": "biome check --write",
"test:vitest": "pnpm turbo test:vitest",
"playground:react": "pnpm --filter @crossmint/wallets-playground-react dev",
"playground:expo:ios": "pnpm --filter @crossmint/wallets-playground-expo ios",
"playground:expo:android": "pnpm --filter @crossmint/wallets-playground-expo android"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "2.27.1",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.4",
"@types/node": "20.14.8",
"cross-env": "7.0.3",
"jest": "29.6.4",
"rimraf": "6.0.1",
"ts-jest": "29.1.1",
"tsup": "8.1.0",
"turbo": "2.2.3",
"typescript": "5.5.3",
"vitest": "1.6.1",
"vitest-mock-extended": "2.0.2"
},
"packageManager": "pnpm@9.3.0",
"engines": {
"node": ">=20.19.4",
"npm": "please-use-pnpm",
"pnpm": ">=9",
"yarn": "please-use-pnpm"
},
"pnpm": {
"overrides": {
"axios@0": "0.30.0",
"axios@1": "1.12.2",
"elliptic@6": "6.6.1",
"form-data@3": "3.0.4",
"form-data@4": "4.0.4",
"path-to-regexp@0": "0.1.12",
"react-native": "0.82.1",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.0",
"pbkdf2": "3.1.3",
"trim@0": "0.0.3",
"ws@7": "7.5.10",
"ws@8": "8.18.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"@isaacs/brace-expansion": "5.0.1",
"tar@6": "7.5.7",
"tar@7": "7.5.7",
"h3": "1.15.5",
"@remix-run/router": "1.23.2",
"@remix-run/react": "2.17.3",
"preact": "10.28.2",
"qs": "6.14.1",
"valibot": "1.2.0"
}
}
}