-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.42 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.42 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "object-ui-monorepo",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://www.objectui.org",
"packageManager": "pnpm@10.31.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"workspaces": [
"packages/*",
"examples/*",
"apps/*",
"docs"
],
"scripts": {
"dev": "pnpm --filter @object-ui/console dev",
"dev:server": "pnpm --filter @object-ui/dev-server dev",
"dev:full": "concurrently -k -n server,console -c blue,green \"pnpm dev:server\" \"wait-on -t 60000 http://localhost:3000/api/v1/health && pnpm dev\"",
"start": "pnpm --filter @object-ui/console preview",
"build": "turbo run build --filter=!@object-ui/site",
"build:all": "turbo run build",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project ui",
"site:dev": "pnpm --filter @object-ui/site dev",
"site:build": "pnpm --filter @object-ui/site build",
"site:start": "pnpm --filter @object-ui/site start",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"cli": "node packages/cli/dist/cli.js",
"objectui": "node packages/cli/dist/cli.js",
"create-plugin": "node packages/create-plugin/dist/index.js",
"docs:api": "typedoc",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"doctor": "node packages/cli/dist/cli.js doctor",
"studio": "node packages/cli/dist/cli.js studio",
"check": "node packages/cli/dist/cli.js check",
"generate": "node packages/cli/dist/cli.js generate",
"g": "node packages/cli/dist/cli.js generate",
"shadcn:analyze": "node scripts/component-analysis.js",
"shadcn:check": "node scripts/shadcn-sync.js --check",
"shadcn:update": "node scripts/shadcn-sync.js --update",
"shadcn:update-all": "node scripts/shadcn-sync.js --update-all --backup",
"build:console": "pnpm --filter @object-ui/console build",
"shadcn:diff": "node scripts/shadcn-sync.js --diff",
"shadcn:list": "node scripts/shadcn-sync.js --list",
"changeset:check": "node scripts/check-changeset-fixed.mjs",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@objectstack/cli": "^5.2.0",
"@objectstack/spec": "^5.2.0",
"@playwright/test": "^1.60.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.18",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@storybook/test-runner": "^0.24.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/ui": "^4.1.6",
"autoprefixer": "^10.5.0",
"axe-core": "^4.11.4",
"concurrently": "^9.2.1",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.4.0",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"jsdom": "^29.1.1",
"msw": "^2.14.6",
"msw-storybook-addon": "^2.0.7",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-router-dom": "^7.15.0",
"rollup-plugin-visualizer": "^7.0.1",
"storybook": "^8.6.18",
"tailwindcss": "^4.3.0",
"tslib": "^2.8.1",
"tsx": "^4.22.1",
"turbo": "^2.9.14",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite-plugin-compression2": "^2.5.3",
"vitest": "^4.1.6",
"vitest-axe": "^0.1.0",
"wait-on": "^9.0.10"
},
"pnpm": {
"overrides": {
"react": "19.2.6",
"react-dom": "19.2.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"dompurify": "^3.4.5"
}
},
"dependencies": {
"coverage-v8": "0.0.1-security"
},
"msw": {
"workerDirectory": [
"public"
]
}
}