-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.8 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.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
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
{
"name": "@lumeweb/web",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "turbo build",
"release": "knope release",
"release:changesets": "node scripts/generate-changesets-from-release.js",
"publish:npm": "pnpm -r publish --provenance",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build:lumeweb.com": "turbo build --filter=@lumeweb/lumeweb.com",
"build:docs.lumeweb.com": "turbo build --filter=@lumeweb/docs.lumeweb.com",
"build:docs.pinner.xyz": "turbo build --filter=@lumeweb/docs.pinner.xyz",
"build:portal-frontend": "turbo build --filter=@lumeweb/portal-frontend",
"build:portal-app-shell": "turbo build --filter=@lumeweb/portal-app-shell",
"build:portal-plugin-dashboard": "turbo build --filter=@lumeweb/portal-plugin-dashboard",
"build:portal-plugin-admin": "turbo build --filter=@lumeweb/portal-plugin-admin",
"build:portal-plugin-billing": "turbo build --filter=@lumeweb/portal-plugin-billing",
"e2e:portal-plugin-dashboard": "turbo run e2e --filter=@lumeweb/portal-plugin-dashboard",
"build:portal-plugin-core": "turbo build --filter=@lumeweb/portal-plugin-core",
"build:portal-plugin-ipfs": "turbo build --filter=@lumeweb/portal-plugin-ipfs"
},
"private": true,
"dependencies": {
"@refinedev/core": "catalog:",
"autoprefixer": "^10.5.0",
"postcss": "8.5.13",
"qs-esm": "^8.0.1",
"tailwindcss": "catalog:"
},
"devDependencies": {
"@changesets/write": "^0.4.0",
"@module-federation/vite": "catalog:",
"@playwright/test": "^1.60.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.3.6",
"@storybook/addon-themes": "^10.3.6",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@storybook/test": "^8.6.15",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.7.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.6",
"@vitest/spy": "^4.1.6",
"dotenv-cli": "catalog:",
"error-stack-parser-es": "^1.0.5",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-react-hooks": "^7.1.1",
"happy-dom": "catalog:",
"meow": "^14.1.0",
"nanoevents": "catalog:",
"nock": "catalog:",
"npm-run-all": "catalog:",
"orval": "catalog:",
"oxlint": "^1.64.0",
"p-queue": "^9.2.0",
"playwright": "catalog:",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"simple-git": "^3.36.0",
"smol-toml": "^1.6.1",
"storybook": "10.3.6",
"taze": "^19.11.0",
"tsdown": "catalog:",
"turbo": "^2.9.12",
"typescript": "catalog:",
"vite": "catalog:framework",
"vitest": "catalog:",
"vitest-browser-react": "catalog:",
"wrangler": "^4.90.1"
},
"pnpm": {
"overrides": {
"@module-federation/enhanced>typescript": "catalog:",
"@module-federation/dts-plugin>typescript": "catalog:",
"@module-federation/rspack>typescript": "catalog:"
},
"patchedDependencies": {
"object-inspect": "patches/object-inspect.patch",
"warn-once": "patches/warn-once.patch",
"pluralize": "patches/pluralize.patch",
"papaparse": "patches/papaparse.patch",
"@uppy/core": "patches/@uppy__core.patch",
"better-sse@0.16.1": "patches/better-sse@0.16.1.patch"
},
"onlyBuiltDependencies": [
"@ipshipyard/node-datachannel",
"@parcel/watcher",
"aws-sdk",
"es5-ext",
"esbuild",
"msw",
"sharp",
"workerd"
]
},
"packageManager": "pnpm@10.33.4",
"repository": {
"type": "git",
"url": "https://github.com/LumeWeb/web"
}
}