-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.78 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
{
"name": "my-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npx tsc --noEmit && npx vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"start": "serve -s dist -l $PORT",
"heroku-postbuild": "npm rebuild rollup esbuild && npm run build",
"deploy": "npm run build && gh-pages -d dist",
"postinstall": "npm rebuild rollup esbuild"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.2.2",
"@mui/icons-material": "^7.3.5",
"@mui/material": "^7.3.4",
"@react-pdf/renderer": "^4.3.1",
"@reduxjs/toolkit": "^2.9.0",
"@testing-library/react": "^16.3.0",
"@types/html2pdf.js": "^0.10.0",
"axios": "^1.12.2",
"browser-image-compression": "^2.0.2",
"date-fns": "^4.1.0",
"esbuild": "^0.24.0",
"html2pdf.js": "^0.12.1",
"i18next": "^25.5.2",
"js-cookie": "^3.0.5",
"path": "^0.12.7",
"pdfjs-dist": "^5.4.296",
"react": "^19.1.1",
"react-countup": "^6.5.3",
"react-dom": "^19.1.1",
"react-hook-form": "^7.64.0",
"react-i18next": "^16.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.3",
"rollup": "^4.52.5",
"serve": "^14.2.5",
"tesseract.js": "^6.0.1",
"typescript": "~5.8.3",
"vite": "^7.2.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^24.6.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.3.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.1",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"ts-jest": "^29.4.5",
"typescript-eslint": "^8.44.0",
"vite-plugin-node-polyfills": "^0.24.0"
},
"engines": {
"node": "22.x",
"npm": "10.x"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{js,jsx,json,md,css,html}": [
"prettier --write"
]
}
}