-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.66 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.66 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
127
128
129
130
{
"name": "webpack-ts-template",
"version": "1.0.0",
"description": "webpack typescript template",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "npm run clean & webpack --config webpack/webpack.prod.js",
"build:analyze": "npm run clean & webpack --config webpack/webpack.prod.js --analyze",
"clean": "rimraf dist"
},
"browserslist": {
"production": [
">0.5%",
"last 1 year",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.less": [
"prettier --write"
]
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^20.10.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"autoprefixer": "^10.4.21",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-preval": "^5.1.0",
"babel-plugin-transform-commonjs": "^1.1.6",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-replace-expressions": "^0.2.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "latest",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"file-loader": "^6.2.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.5.3",
"json-minimizer-webpack-plugin": "^4.0.0",
"less": "^4.3.0",
"less-loader": "^12.3.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.6.2",
"style-loader": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"terser-webpack-plugin": "^5.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"author": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"keywords": [
"webpack",
"babel",
"typescript",
"less"
],
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@reduxjs/toolkit": "^2.9.0",
"@tanstack/react-query": "^5.87.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^25.3.6",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.525.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.60.0",
"react-i18next": "^15.6.1",
"react-redux": "^9.2.0",
"react-router": "^7.6.3",
"react-router-dom": "^7.6.3",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.0",
"vaul": "^1.1.2",
"zod": "^4.0.5"
},
"engines": {
"node": ">=18.0.0"
}
}