-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "@lemoncode/web",
"private": true,
"version": "0.0.0",
"type": "module",
"imports": {
"#*": "./src/*"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"check-types": "tsc --noEmit",
"check-types:watch": "node --run check-types -- --watch --preserveWatchOutput",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test --ui",
"ci:e2e": "playwright test"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "1.8.1",
"@lemoncode/quickmock-bridge-protocol": "*",
"@fontsource-variable/montserrat": "5.2.8",
"@fontsource/balsamiq-sans": "5.2.8",
"@uiw/react-color-chrome": "2.10.1",
"html2canvas": "1.4.1",
"immer": "10.1.1",
"konva": "9.3.22",
"lodash.clonedeep": "4.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-konva": "18.2.14",
"react-konva-utils": "1.1.3",
"tiny-invariant": "1.3.3",
"use-debounce": "10.1.1",
"use-image": "1.1.4",
"uuid": "10.0.0"
},
"devDependencies": {
"@lemoncode/typescript-config": "*",
"@lemoncode/vitest-config": "*",
"@playwright/test": "1.60.0",
"@types/lodash.clonedeep": "4.5.9",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/uuid": "10.0.0",
"@types/wicg-file-system-access": "2023.10.7",
"@vitejs/plugin-react": "6.0.2",
"vite": "8.0.13"
}
}