-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 998 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 998 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
{
"name": "react-app-template",
"version": "0.0.1",
"description": "React app template",
"type": "module",
"repository": "https://github.com/lucerion/react-app-template",
"license": "BSD-3-Clause",
"author": "Author <email>",
"scripts": {
"start": "webpack serve --mode development --env development --hot",
"build": "webpack --mode production",
"lint": "eslint ."
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}