-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.78 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
{
"name": "links-for-aechat",
"type": "module",
"license": "MPL-2.0",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@orama/stemmers": "^3.1.18",
"@types/lodash": "^4.17.21",
"antd": "^6.2.2",
"file-saver": "^2.0.5",
"framer-motion": "^12.24.12",
"lodash": "^4.17.23",
"pako": "^2.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-helmet-async": "^2.0.5",
"react-remove-scroll": "^2.7.2",
"react-router-dom": "^7.12.0",
"react-snowfall": "^2.4.0",
"react-window": "^2.2.4",
"resize-observer-polyfill": "^1.5.1",
"web-haptics": "^0.0.6"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@cspell/dict-ru_ru": "^2.3.2",
"@eslint/js": "^9.39.2",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@iconify/react": "^6.0.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/file-saver": "^2.0.7",
"@types/fluent-ffmpeg": "^2",
"@types/node": "^25.0.3",
"@types/pako": "^2.0.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/types": "^8.52.0",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-react": "^5.1.2",
"@vitejs/plugin-react-swc": "^4.2.2",
"autoprefixer": "^10.4.23",
"cspell": "^9.7.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^5.3.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"fluent-ffmpeg": "^2.1.3",
"globals": "^17.0.0",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"image-size": "^2.0.2",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"sass": "^1.97.2",
"stylelint": "^16.26.1",
"stylelint-config-concentric-order": "^5.2.1",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-order": "^7.0.1",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1"
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "vite build && vite build --ssr src/EntryServer.tsx --outDir dist/server && node prerender.js",
"prepare": "husky",
"postinstall": "husky install",
"format": "echo \"--- Running tsc ---\"; tsc; echo \"--- Running stylelint ---\"; stylelint \"**/*.scss\" --fix; echo \"--- Running eslint ---\"; eslint . --fix; echo \"--- Running prettier ---\"; prettier --write .",
"lint:content": "node scripts/content/lintContent.js",
"lint:no-html-strings": "node scripts/content/lintNoHtmlInStrings.js",
"lint:divider-style": "node scripts/content/lintDividerStyle.js",
"extract:marked-text": "node scripts/reports/extractMarkedText.js",
"report:versions": "node scripts/reports/generateVersionReports.js",
"fonts:generate-style": "node scripts/fonts/generateFontStyle.js",
"fonts:generate-static": "node scripts/fonts/generateStaticFonts.js",
"media:metadata": "node scripts/media/getMediaMetadata.js",
"maintenance:fix-tokens": "node scripts/maintenance/fixTokens.js",
"maintenance:lowercase-tags": "node scripts/maintenance/lowercaseTags.js",
"maintenance:remove-empty-lines": "node scripts/maintenance/removeEmptyLines.js",
"maintenance:sort-imports": "node scripts/maintenance/sortImports.js"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix",
"*.scss": "stylelint --fix",
"*.{ts,tsx,js,jsx,json,md,html,scss,css}": "prettier --write"
},
"packageManager": "yarn@4.14.1"
}