-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
37 lines (37 loc) · 1.04 KB
/
package.json
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
{
"name": "luigi-example-react",
"version": "1.0.0",
"description": "A minimalistic react app hosting a Luigi based application",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"serve": "webpack-dev-server --mode production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@luigi-project/client": "^2.18.0",
"@luigi-project/core": "^2.18.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-spawn": "^7.0.6",
"express": "^4.21.1",
"html-webpack-plugin": "^5.6.0",
"send": "^0.19.0",
"serve-static": "^1.16.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}