-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.64 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.64 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
{
"name": "vite-react",
"private": true,
"version": "0.1.0",
"type": "module",
"babelMacros": {
"twin": {
"preset": "emotion",
"config": "tailwind.config.ts"
}
},
"scripts": {
"dev": "vite --open",
"dev:force": "run-s clear \"dev --force\"",
"build-only": "vite build",
"build": "run-p type-check build-only",
"build:staging": "run-p type-check && \"build-only --mode staging\"",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint . --fix",
"format": "prettier --write . -l -u --no-error-on-unmatched-pattern",
"lf": "run-p lint format",
"vitest": "vitest --coverage",
"test:unit": "run-s \"vitest run\"",
"test:unit:watch": "run-s \"vitest --ui\"",
"test:e2e": "env-cmd -f .env.development --no-override playwright test",
"test:e2e:watch": "env-cmd -f .env.development --no-override playwright test --ui",
"test:e2e:ci": "env-cmd -f .env.staging --no-override playwright test",
"clear": "rimraf test-results playwright-report dist",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@loadable/component": "^5.16.7",
"@mui/icons-material": "^7.3.7",
"@mui/lab": "7.0.1-beta.21",
"@mui/material": "^7.3.7",
"chroma-js": "^3.2.0",
"clsx": "^2.1.1",
"formik": "^2.4.9",
"i18next": "^25.7.4",
"jotai": "^2.16.2",
"jotai-devtools": "^0.13.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"match-sorter": "^8.2.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-helmet-async": "^2.0.5",
"react-hot-toast": "^2.6.0",
"react-i18next": "^16.5.3",
"react-router-dom": "^7.12.0",
"react-use": "^17.6.0",
"sort-by": "^1.2.0",
"twin.macro": "^3.4.1",
"uuid": "^13.0.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@emotion/babel-plugin-jsx-pragmatic": "^0.3.0",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@svgr/rollup": "^8.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/chroma-js": "^3.1.2",
"@types/loadable__component": "^5.13.10",
"@types/lodash": "^4.17.23",
"@types/node": "^25.0.8",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"autoprefixer": "^10.4.23",
"babel-plugin-import": "^1.13.8",
"babel-plugin-macros": "^3.1.0",
"dotenv": "^17.2.3",
"env-cmd": "^11.0.0",
"eslint": "^9.22.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.0.0",
"happy-dom": "^17.6.3",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"p-min-delay": "^4.2.0",
"postcss": "^8.5.6",
"prettier": "3.7.4",
"rimraf": "^6.1.2",
"sass": "^1.97.2",
"svgo": "^4.0.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vite-plugin-checker": "^0.12.0",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20"
}
}