-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.52 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.52 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
{
"name": "intercom-frontend",
"private": true,
"version": "4.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"start": "vite preview",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky install",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"pretty": "prettier --write --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"postversion": "git push && git push --tags",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"e2e:chromium": "playwright test --project=chromium-15inch",
"e2e:firefox": "playwright test --project=firefox-15inch",
"e2e:webkit": "playwright test --project=webkit-15inch",
"e2e:mobile": "playwright test --project=mobile-iphone-se --project=mobile-iphone-14",
"e2e:report": "playwright show-report"
},
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.14.1",
"@eyevinn/media-event-filter": "^3.4.0",
"@hookform/error-message": "^2.0.1",
"@martinstark/storage-ts": "^1.1.0",
"bowser": "^2.13.1",
"react": "^19.2.4",
"react-dom": "^19.2.3",
"react-hook-form": "^7.68.0",
"react-hotkeys-hook": "^4.5.0",
"react-router": "^7.13.0",
"react-router-dom": "^7.13.0"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.4.2",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"happy-dom": "^20.7.0",
"husky": "^9.0.11",
"lint-staged": "^16.2.6",
"prettier": "^3.7.4",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
}
}