-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.04 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "modern-react-app",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"commit": "cz",
"lint:css": "stylelint --quiet --formatter=verbose \"./src/**/*.css\"",
"lint:js": "eslint . --max-warnings 0",
"lint:ts": "tsc -p tsconfig.json",
"test": "vitest run",
"coverage": "vitest run --coverage",
"playwright": "playwright test",
"lighthouse": "lhci autorun",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.css": [
"prettier --write",
"stylelint --formatter=verbose --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"browserslist": [
"defaults and fully supports es6-module"
],
"dependencies": {
"@heroicons/react": "^2.2.0",
"clsx": "^2.1.1",
"core-js": "^3.40.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-multi-carousel": "^2.8.5",
"react-router": "^7.1.1",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@codecov/vite-plugin": "^1.9.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@lhci/cli": "^0.14.0",
"@playwright/test": "^1.49.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/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.2",
"@vitest/eslint-plugin": "^1.1.31",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.4",
"commitizen": "^4.3.1",
"dotenv": "^16.4.7",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"postcss": "^8.5.3",
"postcss-nested": "^7.0.2",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.4",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.11",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^3.0.2"
}
}