-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.27 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.27 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
{
"name": "@object-ui/console",
"version": "3.0.1",
"description": "ObjectStack Console - The standard runtime UI for ObjectStack applications",
"type": "module",
"main": "./plugin.ts",
"exports": {
".": {
"import": "./plugin.ts",
"default": "./plugin.ts"
}
},
"files": [
"dist",
"plugin.ts"
],
"scripts": {
"msw:init": "msw init -y public",
"dev": "pnpm msw:init && vite",
"start": "tsx ../../node_modules/@objectstack/cli/bin/objectstack.js serve objectstack.config.ts",
"start:mock": "pnpm msw:init && vite preview",
"build": "pnpm msw:init && tsc && VITE_USE_MOCK_SERVER=false vite build",
"build:vercel": "pnpm msw:init && tsc && VITE_USE_MOCK_SERVER=true vite build",
"build:analyze": "pnpm build && echo 'Bundle analysis available at dist/stats.html'",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@object-ui/auth": "workspace:*",
"@object-ui/collaboration": "workspace:*",
"@object-ui/components": "workspace:*",
"@object-ui/core": "workspace:*",
"@object-ui/data-objectstack": "workspace:*",
"@object-ui/example-crm": "workspace:*",
"@object-ui/example-kitchen-sink": "workspace:*",
"@object-ui/example-todo": "workspace:*",
"@object-ui/fields": "workspace:*",
"@object-ui/i18n": "workspace:*",
"@object-ui/layout": "workspace:*",
"@object-ui/mobile": "workspace:*",
"@object-ui/permissions": "workspace:*",
"@object-ui/plugin-calendar": "workspace:*",
"@object-ui/plugin-charts": "workspace:*",
"@object-ui/plugin-dashboard": "workspace:*",
"@object-ui/plugin-designer": "workspace:*",
"@object-ui/plugin-detail": "workspace:*",
"@object-ui/plugin-form": "workspace:*",
"@object-ui/plugin-gantt": "workspace:*",
"@object-ui/plugin-grid": "workspace:*",
"@object-ui/plugin-kanban": "workspace:*",
"@object-ui/plugin-list": "workspace:*",
"@object-ui/plugin-map": "workspace:*",
"@object-ui/plugin-markdown": "workspace:*",
"@object-ui/plugin-report": "workspace:*",
"@object-ui/plugin-timeline": "workspace:*",
"@object-ui/plugin-view": "workspace:*",
"@object-ui/react": "workspace:*",
"@object-ui/types": "workspace:*",
"@objectstack/cli": "^3.0.4",
"@objectstack/client": "^3.0.4",
"@objectstack/driver-memory": "^3.0.4",
"@objectstack/objectql": "^3.0.4",
"@objectstack/plugin-msw": "^3.0.4",
"@objectstack/runtime": "^3.0.4",
"@objectstack/spec": "^3.0.4",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.2.3",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.24",
"happy-dom": "^20.6.1",
"lucide-react": "^0.563.0",
"msw": "^2.12.10",
"postcss": "^8.5.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router-dom": "^7.13.0",
"sonner": "^2.0.7",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^4.0.18"
},
"msw": {
"workerDirectory": [
"public"
]
}
}