-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "build",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "webpack -c ./configs/webpack.prod.js",
"dev": "webpack serve --open -c ./configs/webpack.dev.js",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-query-devtools": "^5.62.11",
"axios": "^1.7.9",
"core-js": "^3.39.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime-corejs3": "^7.26.0",
"@eslint/js": "^9.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/webpack-env": "^1.18.5",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globals": "^15.13.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^8.0.0",
"lint-staged": "^15.2.11",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"react-refresh": "^0.16.0",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.17",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
}
}