forked from thangved/react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "react-boilerplate",
"version": "1.0.7",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"coverage": "vitest run --coverage",
"dev": "vite",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 public/logo.svg",
"knip": "knip",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky",
"start": "vite preview",
"test": "vitest"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.7",
"@tanstack/react-query": "^5.28.14",
"@tomjs/vite-plugin-html": "^1.5.1",
"axios": "^1.7.4",
"clsx": "^2.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^7.0.0",
"sharp": "^0.33.5",
"svgo": "^3.2.0",
"vite-plugin-bundle-prefetch": "^0.0.4",
"vite-plugin-image-optimizer": "^1.1.7"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/node": "^22.10.1",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"knip": "^5.39.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^2.4.14",
"sass": "^1.77.5",
"typescript": "^5.7.2",
"vite": "^5.4.6",
"vite-imagetools": "^7.0.4",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-optimize-css-modules": "^1.0.6",
"vite-plugin-pwa": "^0.21.0",
"vitest": "^2.0.4"
}
}