-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 938 Bytes
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
{
"name": "cms",
"type": "module",
"version": "0.0.1",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"generate-types": "wrangler types",
"test:e2e": "npx tsx tests/e2e/run-e2e.ts",
"test:e2e:ui": "npx tsx tests/e2e/run-e2e.ts --ui"
},
"dependencies": {
"@astrojs/cloudflare": "^13.5.4",
"@astrojs/react": "^5.0.5",
"@blocknote/core": "^0.51.2",
"@blocknote/mantine": "^0.51.2",
"@blocknote/react": "^0.51.2",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"astro": "^6.3.7",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"wrangler": "4.95.0"
},
"overrides": {
"vite": "^7"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@vitest/coverage-v8": "^4.1.7",
"vitest": "^4.1.7"
}
}