-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.5 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
{
"name": "kr4chinin-advanced-vite-react-spa-template",
"private": false,
"version": "1.0.4",
"type": "module",
"author": "Ilya Kruchinin (https://github.com/kr4chinin)",
"description": "Full featured Vite React SPA template with TypeScript, ESLint, Prettier, Styled Components, React Query, Axios, React Router, Husky, Lint-Staged and Babel configurations and presets. It is a good starting point for your next project.",
"license": "MIT",
"packageManager": "[email protected]",
"main": "./src/index.tsx",
"engines": {
"npm": ">=8.0.0"
},
"keywords": [
"vite",
"react",
"spa",
"template",
"typescript",
"eslint",
"prettier",
"styled-components",
"react-query",
"axios",
"react-router",
"husky",
"lint-staged",
"babel",
"module",
"frontend",
"web",
"development"
],
"scripts": {
"start": "vite",
"ts": "tsc --noEmit",
"build": "tsc && vite build",
"lint:ts": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"format": "prettier --write .",
"preview": "vite preview",
"prepare": "npx husky"
},
"dependencies": {
"@tanstack/react-query": "^5.59.16",
"axios": "^1.7.7",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-router-dom": "^6.27.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9",
"@stylistic/eslint-plugin": "^2.10.0",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@total-typescript/ts-reset": "^0.6.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-react": "^4.3.3",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks-extra": "^1.15.2",
"eslint-plugin-regexp": "^2.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"styled-components": "^6"
}
}