-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 957 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 957 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
{
"name": "@thr0wn/react-webpack",
"version": "0.0.1",
"description": "react+webpack",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --open"
},
"author": "natanscamargos@gmail.com",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^8.1.0",
"css-loader": "^5.2.4",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.2.1",
"sass": "^1.94.2",
"sass-loader": "^16.0.6",
"style-loader": "^1.2.1",
"webpack": "^5.103.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"classnames": "^2.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^5.5.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
}