-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.73 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
{
"name": "frontend-patterns",
"repository": "https://github.com/tassioFront/frontend-pattern.git",
"version": "0.1.0",
"private": true,
"scripts": {
"test:ci": "vitest --watch=false",
"test": "vitest",
"test:cov": "vitest run --coverage",
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"visualizer": "VITE_VISUALIZER=true yarn build",
"e2e": "cypress run --browser chrome",
"pre-commit": "lint-staged",
"pre-push": "yarn test:ci && yarn build",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@open-ish/utility-storagefy": "1.1.1",
"@open-ish/utility-trycatchfy": "1.3.2",
"@reduxjs/toolkit": "^2.3.0",
"axios": "^1.1.3",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lazy-load-image-component": "^1.5.6",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.1",
"uniqid": "^5.4.0",
"vite": "5.4.10",
"web-vitals": "^2.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@openish-u/dependabot-pr-manager": "^5.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "14.2.2",
"@testing-library/user-event": "14.5.2",
"@types/jest": "^27.0.1",
"@types/node": "^22.8.6",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/uniqid": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-istanbul": "^1.6.0",
"cypress": "^13.15.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.37.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.2",
"styled-components": "^6.1.13",
"styled-media-query": "^2.1.2",
"typescript": "5.6.3",
"vitest": "1.6.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
}
}