This repository was archived by the owner on Oct 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.3 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.3 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
112
113
114
115
116
117
118
119
120
121
{
"name": "vite-template-redux",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run --coverage",
"watch-test": "vitest",
"format": "prettier --write .",
"lint": "eslint .",
"type-check": "tsc",
"prepare": "husky",
"pre-commit": "lint-staged",
"lint:css": "stylelint . --fix"
},
"dependencies": {
"@hello-pangea/dnd": "^16.6.0",
"@netlify/functions": "^2.6.0",
"@reduxjs/toolkit": "^2.2.2",
"@tanstack/query-sync-storage-persister": "^5.28.6",
"@tanstack/react-query": "^5.28.6",
"@tanstack/react-query-persist-client": "^5.28.6",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.6.8",
"classnames": "^2.5.1",
"comlink": "^4.4.1",
"dayjs": "^1.11.10",
"diff": "^5.2.0",
"docx": "^8.5.0",
"file-saver": "^2.0.5",
"focus-trap": "^7.5.4",
"fuse.js": "^7.0.0",
"html-to-image": "^1.11.11",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"lz-string": "^1.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.51.1",
"react-hotkeys-hook": "^4.5.0",
"react-icons": "^5.0.1",
"react-merge-refs": "^2.1.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-secure-storage": "^1.3.2",
"react-textarea-autosize": "^8.5.3",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.26.3",
"react-use": "^17.5.0",
"redux-persist": "^6.0.0",
"styled-components": "^6.1.8",
"tua-body-scroll-lock": "^1.4.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.28.6",
"@tanstack/react-query-devtools": "^5.28.6",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/body-scroll-lock": "^3.1.2",
"@types/diff": "^5.0.9",
"@types/file-saver": "^2.0.7",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.2.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"msw": "^2.2.10",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"stylelint": "^16.3.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.3",
"user-agent-data-types": "^0.4.2",
"vite": "^5.2.6",
"vite-plugin-comlink": "^4.0.2",
"vitest": "^1.4.0"
},
"eslintConfigComments": {
"parser-related": "https://stackoverflow.com/a/41190209/5800789",
"testing-library-related": "https://sapegin.me/til/react/ensuring-react-testing-library-best-practices-with-eslint/"
},
"msw": {
"workerDirectory": [
""
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,mts}": [
"npm run lint",
"npm run format"
],
"*.{json,html,md,css}": [
"npm run format"
],
"*.tsx": [
"npm run lint:css"
]
}
}