-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.86 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
{
"name": "web-dev-tools",
"version": "3.0.0",
"private": true,
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.3.0",
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "jest --config=jest.config.ts",
"test:coverage": "jest --config=jest.config.ts --coverage",
"eject": "craco eject",
"lint": "eslint --ext .js,.ts,.jsx,.tsx .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|json)\""
},
"dependencies": {
"@craco/craco": "^7.1.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/fira-code": "^5.2.7",
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.18.0",
"date-fns": "^2.30.0",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^3.0.0",
"react-hook-form": "^7.54.2",
"react-i18next": "^12.3.1",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-router-dom": "^6.30.0",
"react-scripts": "^5.0.1",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"sitemap-webpack-plugin": "^1.1.1",
"styled-components": "^5.3.11",
"typescript": "^4.9.5",
"web-vitals": "^3.5.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unicorn": "^56.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2"
},
"pnpm": {
"overrides": {
"nth-check@<2.0.1": ">=2.0.1",
"postcss@<8.4.31": ">=8.4.31",
"semver@>=2.0.0-alpha <5.7.2": ">=5.7.2",
"serialize-javascript@<=7.0.2": ">=7.0.3",
"postcss@<8.5.10": ">=8.5.10",
"underscore@<=1.13.7": ">=1.13.8",
"@tootallnate/once@<2.0.1": ">=2.0.1",
"serialize-javascript@>=5.0.0 <7.0.5": ">=7.0.5",
"uuid@<11.1.1": ">=11.1.1"
}
}
}