-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
87 lines (87 loc) · 2.98 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
{
"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 --max-warnings 400",
"lint:err": "npx eslint . --quiet",
"lint:fix": "npx eslint . --fix --report-unused-disable-directives --max-warnings 400",
"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"
},
"dependencies": {
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"next": "15.0.2",
"nextjs-toploader": "^3.6.15",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"react-double-marquee": "^1.1.0",
"react-responsive-carousel": "^3.2.23"
},
"devDependencies": {
"@feature-sliced/eslint-config": "^0.1.1",
"@percy/cli": "^1.30.1",
"@percy/playwright": "^1.0.6",
"@playwright/test": "^1.48.2",
"@stylistic/eslint-plugin": "^2.10.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-sort-exports": "^0.9.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.80.6",
"stylelint": "^16.9.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@testing-library/react": {
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028"
},
"nextjs-toploader": {
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028"
}
}
}