-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.64 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
{
"name": "react-template-spa",
"version": "1.4.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "^11.11.4",
"@tanstack/react-query": "^5.32.0",
"@tanstack/react-router": "^1.34.7",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.6.8",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@tanstack/router-devtools": "^1.34.7",
"@tanstack/router-vite-plugin": "^1.34.8",
"@testing-library/user-event": "^14.5.2",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/ui": "^1.5.1",
"@welldone-software/why-did-you-render": "^8.0.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.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-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"msw": "^2.2.14",
"orval": "^6.29.1",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.75.0",
"storybook": "^8.0.9",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.5",
"vite": "^5.2.10",
"vitest": "^1.5.1"
},
"scripts": {
"prepare": "husky",
"dev": "vite",
"build": "vite build",
"build:analyze": "vite build --mode=analyze",
"preview": "vite preview",
"lint": "eslint --fix src",
"lint-staged": "lint-staged --allow-empty",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"gen:api": "orval",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"bowserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{tsx,ts}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": "public"
}
}