-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 859 Bytes
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
{
"name": "using-typescript-with-babel",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.3",
"react-refresh": "^0.17.0",
"typescript": "~5.8.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.5"
},
"scripts": {
"start": "webpack serve --hot",
"build": "cross-env NODE_ENV=production webpack"
}
}