forked from DopaMindLabs/writer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.42 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 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
{
"name": "lorem-ipsum-writer",
"version": "0.6.0-alpha",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -b --noEmit",
"test": "TZ=UTC vitest",
"test:run": "TZ=UTC vitest run",
"test:ui": "TZ=UTC vitest --ui",
"test:update": "TZ=UTC vitest run -u",
"test:coverage": "TZ=UTC vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"test:e2e:coverage": "playwright test && node scripts/coverage-ratchet.mjs e2e",
"coverage:ratchet": "node scripts/coverage-ratchet.mjs e2e",
"cloud:harness": "node scripts/cloud-device-harness.mjs",
"build:e2e": "VITE_CLOUD_SYNC_FLAG= VITE_DEVICE_REFRESH_SECONDS= VITE_DEVICE_STALE_SECONDS= VITE_E2E=1 VITE_E2E_CRDT_FAIL_DOC=e2e-crdt-fail VITE_E2E_KEY_ERROR_DOC=e2e-key-error VITE_E2E_RESET_FAIL=1 VITE_COMPACT_THRESHOLD=5 VITE_BASE=/ VITE_DEXIE_CLOUD_URL=https://cloud.example.invalid vite build",
"preview:e2e": "VITE_BASE=/ vite preview --port 4173",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0 --no-warn-ignored"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/geist": "^5.3.0",
"@fontsource/geist-mono": "^5.3.0",
"@fontsource/source-serif-4": "^5.3.0",
"@lexical/code": "^0.48.0",
"@lexical/headless": "^0.48.0",
"@lexical/history": "^0.48.0",
"@lexical/link": "^0.48.0",
"@lexical/list": "^0.48.0",
"@lexical/markdown": "^0.48.0",
"@lexical/react": "^0.48.0",
"@lexical/rich-text": "^0.48.0",
"@lexical/selection": "^0.48.0",
"@lexical/utils": "^0.48.0",
"@lexical/yjs": "^0.48.0",
"@radix-ui/react-dialog": "^1.1.22",
"@radix-ui/react-dropdown-menu": "^2.1.23",
"@radix-ui/react-popover": "^1.1.22",
"@radix-ui/react-scroll-area": "^1.2.17",
"@radix-ui/react-separator": "^1.1.14",
"@radix-ui/react-slot": "^1.3.2",
"@radix-ui/react-tabs": "^1.1.20",
"@radix-ui/react-tooltip": "^1.2.15",
"@retorquere/bibtex-parser": "^10.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.4.4",
"dexie-cloud-addon": "^4.4.13",
"dexie-react-hooks": "^4.4.0",
"diff": "^9.0.0",
"driver.js": "^1.8.0",
"i18next": "^26.3.6",
"jszip": "^3.10.1",
"lexical": "^0.48.0",
"lucide-react": "^1.26.0",
"nanoid": "^6.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.11",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.1",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.6.0",
"typescript": "^6.0.3",
"y-protocols": "^1.0.7",
"yjs": "^13.6.31",
"zustand": "^5.0.14"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "^10.5.4",
"@storybook/addon-docs": "^10.5.4",
"@storybook/react-vite": "^10.5.4",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/diff": "^8.0.0",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.7",
"autoprefixer": "^10.5.4",
"axe-core": "^4.12.1",
"commitizen": "4.3.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fake-indexeddb": "^6.2.5",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.2.0",
"monocart-reporter": "^2.12.3",
"postcss": "^8.5.23",
"storybook": "^10.4.1",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.7"
}
}