-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.05 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
{
"name": "mantine-vite-template",
"private": true,
"type": "module",
"version": "0.0.0",
"homepage": "https://deadlink-hunter.github.io/Broken-Link-Website",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "pnpm run eslint && pnpm run stylelint",
"eslint": "eslint . --cache",
"stylelint": "stylelint '**/*.css' --cache",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"vitest": "vitest run",
"vitest:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test": "pnpm run typecheck && pnpm run prettier && pnpm run lint && pnpm run vitest && pnpm run build",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"prepare": "husky",
"serve-storybook": "npx serve storybook-static -p 8080"
},
"dependencies": {
"@mantine/carousel": "^8.3.18",
"@mantine/charts": "^8.3.18",
"@mantine/core": "^8.3.18",
"@mantine/hooks": "^8.3.18",
"@tabler/icons-react": "^3.45.0",
"@tanstack/react-query": "^5.101.3",
"axios": "^1.18.1",
"http-status-codes": "^2.3.0",
"i18next": "^25.10.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^16.6.6",
"react-router-dom": "^7.18.1",
"recharts": "^3.10.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "9.1.20",
"@storybook/addon-storysource": "^8.6.14",
"@storybook/addon-viewport": "^9.0.8",
"@storybook/addons": "^7.6.17",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^9.1.20",
"@storybook/react-vite": "^9.1.20",
"@storybook/test": "^8.6.15",
"@storybook/testing-library": "^0.2.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/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-i18next": "^8.1.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.5",
"eslint-config-mantine": "^4.0.3",
"eslint-define-config": "^2.1.0",
"eslint-plugin-i18next": "^6.1.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.20",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.9.5",
"prop-types": "^15.8.1",
"storybook": "^9.1.20",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^15.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vite": "^6.4.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.7"
},
"packageManager": "pnpm@9.0.0"
}