-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.63 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.63 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
{
"name": "@object-ui/console",
"version": "3.1.5",
"description": "ObjectStack Console - The standard runtime UI for ObjectStack applications",
"type": "module",
"main": "./plugin.js",
"types": "./plugin.d.ts",
"exports": {
".": {
"types": "./plugin.d.ts",
"import": "./plugin.js",
"default": "./plugin.js"
}
},
"files": [
"dist",
"plugin.ts",
"plugin.js",
"plugin.d.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:plugin": "tsc -p tsconfig.plugin.json",
"build": "pnpm msw:init && tsc && VITE_USE_MOCK_SERVER=false vite build && pnpm build:plugin",
"build:vercel": "pnpm msw:init && tsc && VITE_USE_MOCK_SERVER=true vite build && pnpm build:plugin",
"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": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@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-chatbot": "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": "^4.0.1",
"@objectstack/client": "^4.0.1",
"@objectstack/driver-memory": "^4.0.1",
"@objectstack/objectql": "^4.0.1",
"@objectstack/plugin-msw": "^4.0.1",
"@objectstack/plugin-setup": "^4.0.1",
"@objectstack/runtime": "^4.0.1",
"@objectstack/spec": "^4.0.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/ui": "^4.1.2",
"autoprefixer": "^10.4.27",
"happy-dom": "^20.8.9",
"lucide-react": "^1.7.0",
"msw": "^2.12.14",
"postcss": "^8.5.8",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router-dom": "^7.14.0",
"sonner": "^2.0.7",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.5",
"vitest": "^4.1.2"
},
"msw": {
"workerDirectory": [
"public"
]
}
}