-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
124 lines (124 loc) · 3.74 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
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
122
123
124
{
"name": "react-starter-boilerplate",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build:ci": "cross-env VITE_CI=1 vite build",
"build:analyze": "cross-env ANALYZE=1 npm run build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint \"./src/**/*.{ts,tsx}\" && stylelint \"./src/**/*.{css,pcss,scss}\" && echo \"lint success\"",
"lint:fix": "eslint --fix \"./src/**/*.{ts,tsx}\" && stylelint --fix \"./src/**/*.{css,pcss,scss}\" && echo \"lint success\"",
"plop": "plop",
"translations": "ts-node -T --project tsconfig.json ./scripts/fetch-translations.ts",
"e2e": "cd e2e && npm run test && cd ..",
"e2e:firefox": "cd e2e && npm run test:firefox && cd ..",
"e2e:chrome": "cd e2e && npm run test:chrome && cd ..",
"e2e:safari": "cd e2e && npm run test:safari && cd ..",
"e2e:debug": "cd e2e && npm run test:debug && cd ..",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,md}": [
"eslint --fix"
],
"src/**/*.json": [
"prettier --write"
],
"src/**/*.{css,pcss,scss}": [
"stylelint --fix",
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@sentry/browser": "8.8.0",
"@tanstack/react-query": "5.45.1",
"@tanstack/react-query-devtools": "5.45.1",
"@tanstack/react-router": "1.29.2",
"axios": "1.6.8",
"clsx": "2.1.0",
"jwt-decode": "4.0.0",
"qs": "6.12.1",
"react": "18.3.1",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.13",
"react-intl": "6.6.5",
"typescript": "5.4.3",
"zod": "3.23.0"
},
"devDependencies": {
"@changesets/cli": "2.27.1",
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"@tanstack/router-devtools": "1.29.2",
"@tanstack/router-vite-plugin": "1.30.0",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "15.0.2",
"@testing-library/user-event": "14.5.2",
"@types/flat": "5.0.5",
"@types/node": "20.12.7",
"@types/qs": "6.9.14",
"@types/react": "18.3.1",
"@types/react-dom": "18.2.25",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"@vitejs/plugin-react-swc": "3.6.0",
"@vitest/coverage-v8": "1.5.0",
"@welldone-software/why-did-you-render": "8.0.1",
"babelsheet2": "0.0.15",
"babelsheet2-json-writer": "0.0.6",
"babelsheet2-reader": "0.0.8",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest-dom": "5.2.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "6.2.2",
"eslint-plugin-ui-testing": "2.0.1",
"eslint-plugin-vitest": "0.5.1",
"husky": "9.0.11",
"inquirer-directory": "2.2.0",
"jsdom": "24.0.0",
"lint-staged": "15.2.2",
"msw": "2.2.13",
"plop": "4.0.1",
"prettier": "3.1.1",
"rollup-plugin-visualizer": "5.12.0",
"stylelint": "16.3.1",
"stylelint-config-recommended": "14.0.0",
"vite": "5.2.8",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.5.0"
},
"msw": {
"workerDirectory": "public"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.16.1"
}
}