-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.45 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.45 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
{
"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-core": "turbo build --filter=@lumeweb/portal-plugin-core",
"build:portal-plugin-ipfs": "turbo build --filter=@lumeweb/portal-plugin-ipfs",
"e2e:portal-plugin-dashboard": "turbo run e2e --filter=@lumeweb/portal-plugin-dashboard"
},
"private": true,
"dependencies": {
"@refinedev/core": "catalog:",
"autoprefixer": "^10.4.24",
"postcss": "8.4.49",
"qs-esm": "^7.0.3",
"tailwindcss": "catalog:"
},
"devDependencies": {
"@changesets/write": "^0.4.0",
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@module-federation/vite": "catalog:",
"@playwright/test": "^1.58.1",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.2.3",
"@storybook/addon-themes": "^10.2.3",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^10.2.3",
"@storybook/react-vite": "^10.2.3",
"@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.1.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser": "^4.0.18",
"@vitest/spy": "^4.0.18",
"dotenv-cli": "catalog:",
"error-stack-parser-es": "^1.0.5",
"eslint": "~9.39.2",
"eslint-plugin-perfectionist": "^5.4.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "~7.0.1",
"globals": "^17.3.0",
"happy-dom": "catalog:",
"meow": "^14.0.0",
"nanoevents": "catalog:",
"nock": "catalog:",
"npm-run-all": "catalog:",
"orval": "catalog:",
"p-queue": "^9.1.0",
"playwright": "catalog:",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"simple-git": "^3.30.0",
"smol-toml": "^1.6.0",
"storybook": "10.1.10",
"taze": "^19.9.2",
"tsdown": "catalog:",
"turbo": "^2.8.1",
"typescript": "catalog:",
"typescript-eslint": "^8.54.0",
"vite": "catalog:framework",
"vitest": "catalog:",
"vitest-browser-react": "^2.0.5",
"wrangler": "^4.61.1"
},
"pnpm": {
"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"
}
},
"packageManager": "pnpm@10.28.2",
"repository": {
"type": "git",
"url": "https://github.com/LumeWeb/web"
}
}