-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 3.42 KB
/
package.json
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",
"publish": "changeset publish",
"changeset:publish": "pnpm -r publish --publish-branch develop; pnpm changeset tag && git push --follow-tags",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build:docs.lumeweb.com": "turbo build --filter=@lumeweb/docs.lumeweb.com",
"build:lumeweb.com": "turbo build --filter=@lumeweb/lumeweb.com",
"build:portal-dashboard": "turbo build --filter=@lumeweb/portal-dashboard",
"build:portal-admin": "turbo build --filter=@lumeweb/portal-admin",
"build:portal-frontend": "turbo build --filter=@lumeweb/portal-frontend",
"dev:portal-dashboard": "turbo dev --filter=@lumeweb/portal-dashboard"
},
"private": true,
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.2.75",
"@types/react-dom": "18.2.14",
"typescript": "^5.6.3",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^6.7.4",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.0",
"tailwindcss": "^3.4.1",
"autoprefixer": "^10.4.18",
"class-variance-authority": "^0.7.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"lucide-react": "^0.396.0",
"framer-motion": "^11.3.24",
"clsx": "^2.1.1",
"@refinedev/core" : "4.54.0"
},
"devDependencies": {
"@types/react": "18.2.75",
"@types/react-dom": "18.2.14",
"typescript": "~5.6.3",
"@types/node": "22.2.0",
"eslint": "~8.57.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^7.3.0",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "^3.3.3",
"turbo": "^2.0.12",
"tailwindcss": "3.2.7",
"autoprefixer": "10.4.13",
"postcss": "8.4.49"
},
"overrides": {
"tus-js-client": "4.1.0",
"vite-plugin-node-polyfills": "0.21.0",
"@uppy/utils": "6.0.1",
"@helia/block-brokers": "3.0.3",
"@refinedev/core": "4.54.0",
"@uppy/core": "4.1.0",
"trim": "^0.0.3",
"got": "^11.8.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"pnpm": {
"patchedDependencies": {
"tus-js-client": "patches/tus-js-client.patch",
"vite-plugin-node-polyfills": "patches/vite-plugin-node-polyfills.patch",
"@helia/block-brokers": "patches/@helia__block-brokers.patch",
"@refinedev/core": "patches/@refinedev__core.patch",
"@uppy/utils": "patches/@uppy__utils.patch",
"@uppy/core": "patches/@uppy__core.patch"
}
},
"packageManager": "[email protected]",
"peerDependencies": {}
}