-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 1.9 KB
/
package.json
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
{
"name": "quickmock",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"postinstall": "npm run install:e2e-browsers",
"install:e2e-browsers": "npx playwright install",
"dev": "vite",
"build": "tsc -b && vite build",
"test": "vitest",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky || \"No need to install husky\"",
"tsc-check": "tsc --noEmit",
"e2e": "playwright test --ui",
"ci:e2e": "playwright test"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.2.1",
"@fontsource-variable/montserrat": "^5.0.20",
"@fontsource/balsamiq-sans": "^5.0.21",
"@types/lodash.clonedeep": "^4.5.9",
"immer": "^10.1.1",
"konva": "^9.3.12",
"lodash.clonedeep": "^4.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-konva": "^18.2.10",
"react-konva-utils": "^1.0.6",
"tiny-invariant": "^1.3.3",
"use-image": "^1.1.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.14.2",
"@playwright/test": "^1.47.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@types/wicg-file-system-access": "^2023.10.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}