-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
95 lines (95 loc) · 3.17 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
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
{
"name": "rs-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "tsc && next build",
"stylelint": "npx stylelint \"**/*.scss\"",
"stylelint:fix": "npx stylelint \"**/*.scss\" --fix",
"lint": "npx eslint . --report-unused-disable-directives",
"lint:err": "npx eslint . --quiet",
"lint:fix": "npx eslint . --fix --report-unused-disable-directives",
"preview": "vite preview",
"test": "vitest --run",
"test:playwright": "npx playwright test",
"test:visual": "npx percy exec -- npm run test:playwright",
"coverage": "vitest run --coverage",
"precommit": "npx lint-staged",
"prepare": "husky",
"postbuild": "pagefind --force-language ru --site .next/server/app/docs/ru --output-path build/_next/static/pagefind/ru && pagefind --force-language en --site .next/server/app/docs/en --output-path build/_next/static/pagefind/en"
},
"engines": {
"node": ">=20.x"
},
"dependencies": {
"@next/third-parties": "^15.0.2",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"github-markdown-css": "^5.7.0",
"next": "15.1.2",
"pagefind": "^1.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-double-marquee": "^1.1.0",
"react-markdown": "^9.0.1",
"react-responsive-carousel": "^3.2.23",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remark-rehype": "^11.1.1",
"remark-remove-comments": "^1.1.1",
"remark-toc": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@feature-sliced/eslint-config": "^0.1.1",
"@percy/cli": "^1.30.5",
"@percy/playwright": "^1.0.7",
"@playwright/test": "^1.49.1",
"@stylistic/eslint-plugin": "^2.12.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-sort-exports": "^0.9.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"sass-embedded": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.0.5"
},
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"react": "$react",
"react-dom": "$react-dom"
}
}