-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.16 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
{
"name": "boss-blueprint",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Browser-based website sketch tool for BOSS clients.",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:e2e": "tsc -b && vite build --mode test",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "npm run build:e2e && playwright test",
"e2e:report": "playwright show-report",
"roundtrip:full": "node scripts/roundtrip/run.mjs",
"roundtrip:smoke": "node scripts/roundtrip/run.mjs --scenario B --target preview --smoke",
"roundtrip:fixtures": "node scripts/roundtrip/fixtures/make-fixtures.mjs",
"roundtrip:shipgate": "node scripts/roundtrip/ship-gate.mjs",
"roundtrip:client": "playwright test --config playwright.roundtrip.config.ts",
"roundtrip:gate": "node scripts/roundtrip/gate.mjs",
"roundtrip:gate:selftest": "node scripts/roundtrip/selftest/run.mjs",
"schema:check": "node scripts/roundtrip/extract-schema.mjs --check src/export/schema/site.v1.schema.json"
},
"dependencies": {
"@zumer/snapdom": "^2.23.1",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"fflate": "^0.8.3",
"html-to-image": "^1.11.13",
"perfect-freehand": "^1.2.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"adm-zip": "^0.6.0",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.8.0",
"jpeg-js": "^0.4.4",
"jsdom": "^30.0.0",
"pngjs": "^7.0.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}