-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.52 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
{
"name": "root",
"private": true,
"engines": {
"node": ">=24",
"pnpm": ">=9.0.0"
},
"scripts": {
"lint": "pnpm --stream --filter {packages/**} --filter {examples/**} lint",
"lint:fix": "pnpm --stream --filter {packages/**} --filter {examples/**} lint:fix",
"prettier": "pnpm --stream --filter {packages/**} --filter {examples/**} prettier",
"prettier:fix": "pnpm --stream --filter {packages/**} --filter {examples/**} prettier:fix",
"test": "pnpm test:unit && pnpm test:components",
"test:components": "cypress run --component",
"test:components:browser": "cypress open --component",
"test:unit": "vitest run",
"test:unit:ui": "vitest --ui",
"test:unit:watch": "vitest",
"typecheck": "pnpm --stream --filter {packages/**} --filter {examples/**} typecheck",
"deploy": "pnpm --stream --filter {packages/**} deploy",
"ci": "pnpm install --frozen-lockfile"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.3.1",
"@babel/core": "^7.29.0",
"@cypress/vite-dev-server": "^7.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/ui": "^4.1.4",
"cypress": "^15.13.0",
"cypress-real-events": "^1.15.0",
"msw": "^2.12.14",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.17",
"terser": "^5.46.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"vite": "^7.3.2",
"vitest": "^4.1.4"
},
"dependencies": {
"@frontify/fondue": "13.4.5",
"glob": "^13.0.6",
"happy-dom": "^20.8.9",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"pnpm": {
"patchedDependencies": {
"@udecode/plate-emoji@31.4.0": "patches/@udecode__plate-emoji@31.4.0.patch"
},
"onlyBuiltDependencies": [
"cypress",
"msw",
"esbuild"
],
"overrides": {
"ajv@>=7.0.0-alpha.0 <8.18.0": "^8.18.0",
"immer": "^10.2.0",
"minimatch@^3": "npm:minimatch@^3.1.4",
"lodash@^4": "^4.18.1"
}
},
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800"
}