-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) 路 3.97 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) 路 3.97 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": "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",
"test:coverage": "vitest run --coverage",
"precommit": "npx lint-staged",
"prepare": "husky",
"postbuild": "pagefind --force-language ru --site .next/server/app/ru/docs --output-path build/pagefind/ru && pagefind --force-language en --site .next/server/app/docs --output-path build/pagefind/en",
"contentful:prepare": "dotenv -e .env -- bash -c 'cf-content-types-generator -e $CONTENTFUL_ENVIRONMENT -X -r -d -s $CONTENTFUL_SPACE_ID -t $CONTENTFUL_MANAGEMENT_TOKEN -o src/shared/types/contentful' && npx eslint src/shared/types/contentful/*.ts --fix && prettier --write src/shared/types/contentful/**/*.ts"
},
"engines": {
"node": ">=20.x"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^16.1.5",
"@next/third-parties": "^15.5.4",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"contentful-resolve-response": "^1.9.3",
"core-js": "^3.47.0",
"dayjs": "^1.11.18",
"github-markdown-css": "^5.8.1",
"http-status": "^2.1.0",
"jszip": "^3.10.1",
"next": "15.5.9",
"pagefind": "^1.4.0",
"radix-ui": "^1.4.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-double-marquee": "^1.1.0",
"react-markdown": "^10.1.0",
"react-youtube": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"remark-remove-comments": "^1.1.1",
"remark-toc": "^9.0.0",
"swiper": "^12.0.2",
"swr": "^2.3.6"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@feature-sliced/eslint-config": "^0.1.1",
"@percy/cli": "^1.31.2",
"@percy/playwright": "^1.0.7",
"@playwright/test": "^1.55.1",
"@stylistic/eslint-plugin": "^5.4.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/contentful-resolve-response": "^0.1.33",
"@types/gapi.youtube": "^3.0.40",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.2",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.15",
"cf-content-types-generator": "^2.16.1",
"contentful": "^11.8.2",
"dotenv-cli": "^10.0.0",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^6.1.0",
"eslint-plugin-react-refresh": "^0.4.23",
"eslint-plugin-sort-exports": "^0.9.1",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"sass-embedded": "^1.93.2",
"stylelint": "^16.24.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-declaration-strict-value": "^1.10.11",
"stylelint-order": "^7.0.0",
"stylelint-prettier": "^5.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vitest": "^3.0.5"
},
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"react": "$react",
"react-dom": "$react-dom"
}
}