-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.1 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.1 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
{
"name": "reactplate",
"version": "2.1.0",
"author": "Piotr Piech <piotr@piech.dev>",
"license": "MIT",
"description": "A React + modern Redux (RTK) boilerplate for a fully configured quick start with automatic formatting and linting with ESLint & Prettier. VS Code settings bundled with the boilerplate, including recommended extensions for automatic formatting via a one-click install. Scores perfect 100/100/100/100 score in Chrome Lighthouse.",
"repository": {
"type": "git",
"url": "git+https://github.com/Tenemo/reactplate.git"
},
"bugs": {
"url": "https://github.com/Tenemo/reactplate/issues"
},
"homepage": "https://github.com/Tenemo/reactplate#readme",
"scripts": {
"dev": "vite",
"prebuild": "npm run lint && npm run tsc && npm test",
"build": "vite build",
"build:skip": "vite build",
"build:analyze": "cross-env ANALYZE=true vite build",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"stylelint": "stylelint **/*.scss **/*.css",
"lint": "npm run eslint && npm run stylelint",
"preview": "vite preview",
"tsc": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"browserslist": [
"> 1%",
"not dead",
"not IE 11",
"not op_mini all"
],
"engines": {
"node": ">=22.18.0"
},
"private": true,
"type": "module",
"dependencies": {
"@dr.pogodin/react-helmet": "^3.0.2",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@reduxjs/toolkit": "^2.8.2",
"@sentry/browser": "^10.8.0",
"@sentry/react": "^10.8.0",
"history": "^5.3.0",
"normalize.css": "^8.0.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"react-redux": "^9.2.0",
"react-router": "^7.8.2",
"react-router-dom": "^7.8.2",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@julr/vite-plugin-validate-env": "^2.2.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/react-redux": "^7.1.34",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.13",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"autoprefixer": "^10.4.21",
"browserslist-to-esbuild": "^2.1.1",
"cross-env": "^10.0.0",
"cssnano": "^7.1.1",
"eslint": "9.34",
"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-only-error": "^1.0.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.3.0",
"html-webpack-plugin": "^5.6.4",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"prettier-stylelint": "^0.4.2",
"redux-logger": "^3.0.6",
"rollup-plugin-visualizer": "^6.0.3",
"sass-embedded": "^1.91.0",
"stylelint": "^16.23.1",
"stylelint-config-recommended": "^17.0.0",
"stylelint-config-recommended-scss": "^16.0.0",
"stylelint-scss": "^6.12.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3",
"vite-css-modules": "^1.10.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}