-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.86 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.86 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "frontshore",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky",
"dev": "vite",
"generate:page": "node ./scripts/scaffold.mjs page",
"generate:feature": "node ./scripts/scaffold.mjs feature",
"typecheck": "tsc -b",
"build": "tsc -b && vite build",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"browser-checks:build": "VITE_API_BASE_URL= VITE_WS_BASE_URL= vite build",
"browser-checks:preview": "VITE_BROWSER_CHECKS_FIXTURES=1 vite preview --strictPort --host 127.0.0.1 --port 4173",
"browser-checks:serve": "yarn browser-checks:build && yarn browser-checks:preview",
"playwright:install": "playwright install --with-deps chromium",
"playwright:test": "playwright test",
"playwright:ui": "playwright test --ui",
"knip": "knip",
"size": "yarn build && size-limit",
"size:why": "yarn build && size-limit --why",
"perf:lighthouse": "node ./scripts/run-lighthouse-ci.mjs",
"check": "yarn typecheck && yarn lint && yarn format:check && yarn knip",
"ci:verify": "yarn check && yarn test:coverage && yarn build && yarn build-storybook && size-limit && yarn playwright:test",
"preview": "vite preview"
},
"engines": {
"node": "24.15.0"
},
"dependencies": {
"@mantine/core": "^9.0.2",
"@mantine/form": "^9.0.2",
"@mantine/hooks": "^9.0.2",
"@mantine/modals": "^9.0.2",
"@mantine/notifications": "^9.0.2",
"@tanstack/react-query": "^5.99.2",
"mantine-form-zod-resolver": "^1.3.0",
"phoenix": "^1.8.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2",
"react-youtube": "^10.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@babel/core": "^7.29.0",
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.3",
"@size-limit/file": "^12.1.0",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/babel__core": "^7.20.5",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/node": "^24.12.2",
"@types/phoenix": "^1.6.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.2.1",
"eslint-import-resolver-node": "^0.3.10",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"knip": "^6.6.0",
"lint-staged": "^16.4.0",
"postcss": "^8.5.10",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.3",
"size-limit": "^12.1.0",
"storybook": "10.3.5",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.9",
"vitest": "^4.1.5"
},
"packageManager": "yarn@4.14.1",
"lint-staged": {
"*.{cjs,css,html,js,json,mjs,ts,tsx,yaml,yml}": "prettier --write",
"*.{ts,tsx}": "eslint --fix"
},
"size-limit": [
{
"name": "app bundle",
"path": "dist/assets/*.js",
"limit": "275 kB",
"message": "Keep the initial JavaScript payload lean by trimming dependencies or splitting code paths when this budget grows. Baseline raised from 250 kB after Mantine v9 migration."
}
]
}