-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"dependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"html-webpack-plugin": "^5.6.4",
"mini-css-extract-plugin": "^2.9.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.9.5",
"react-router-dom": "^7.9.5"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-webpack-plugin": "^5.0.2",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-preset": "^0.0.11",
"postcss-preset-env": "^10.4.0",
"react-refresh": "^0.18.0",
"react-refresh-webpack-plugin": "^0.1.0",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
}
}