-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.87 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.87 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
119
120
121
122
123
124
125
126
{
"name": "reactjs-template",
"description": "A simple React.js template for everyone!",
"homepage": ".",
"version": "0.0.0",
"private": false,
"type": "module",
"sideEffects": false,
"author": {
"name": "Dmitry Maximyuk",
"email": "d_maksimyk@vk.com",
"url": "https://github.com/dmaximyuk"
},
"keywords": [
"react",
"template",
"boilerplate",
"fsd",
"feature-sliced",
"typescript",
"javascript",
"sass",
"swc"
],
"engines": {
"node": ">=24.12"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"dev": "vite --host",
"serve": "vite preview",
"check": "tsc --noEmit && pnpm run lint && pnpm run test",
"prebuild": "pnpm run check",
"build": "vite build",
"build:analyze": "BUILD_ANALYZE=true pnpm run build",
"build:compress": "BUILD_COMPRESS=true pnpm run build",
"deploy": "gh-pages -d ./dist",
"test": "jest --passWithNoTests",
"lint": "pnpm run lint:eslint && pnpm run lint:styles && pnpm run lint:fsd",
"lint:eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx --max-warnings=0 --fix",
"lint:styles": "stylelint --fix \"src/**/*.{css,sass,scss}\"",
"lint:fsd": "steiger ./src",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}\" \"vite/**/*.{ts,js,mjs,json,md}\" \"*.{ts,js,mjs,json,md}\" && prettier --write --parser markdown \".cursor/rules/**/*.mdc\"",
"commitlint": "commitlint --edit",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^5.91.3",
"@tanstack/react-router": "^1.168.1",
"@tanstack/react-router-devtools": "^1.166.10",
"clsx": "^2.1.1",
"i18next": "^25.9.0",
"i18next-browser-languagedetector": "^8.2.1",
"ky": "^1.14.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.8",
"valibot": "^1.3.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@feature-sliced/steiger-plugin": "^0.5.7",
"@tanstack/eslint-plugin-query": "^5.91.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^6.0.1",
"browserslist": "^4.28.1",
"browserslist-to-esbuild": "^2.1.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-unused-imports": "^4.4.1",
"gh-pages": "^6.3.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lightningcss": "^1.32.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"sharp": "^0.34.5",
"steiger": "^0.5.11",
"stylelint": "^17.5.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^8.1.1",
"svgo": "^4.0.1",
"terser": "^5.46.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.1",
"vite-bundle-analyzer": "^1.3.6",
"vite-imagetools": "^10.0.0",
"vite-plugin-compression2": "^2.5.3",
"vite-plugin-image-optimizer": "^2.0.3",
"vite-plugin-minify": "^2.1.0",
"vite-plugin-svgr": "^4.5.0"
}
}