-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 985 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 985 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
32
33
34
35
36
37
38
39
{
"name": "react-typescript-by-sample",
"version": "1.0.0",
"description": "React Typescript examples",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --hot --open",
"build": "webpack --mode development"
},
"keywords": [
"react",
"typescript",
"hooks"
],
"author": "Braulio Diez Botella",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.3",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}