-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "example-webpack-plugin-github-action",
"version": "1.0.0",
"description": "@relative-ci/agent webpack plugin setup example for Github Action",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "webpack --mode production --json artifacts/webpack-stats.json",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": {
"name": "Viorel Cojocaru",
"email": "[email protected]",
"url": "https://relative-ci.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/relative-ci/example-react-webpack/issues"
},
"homepage": "https://github.com/relative-ci/example-react-webpack#readme",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@relative-ci/agent": "4.3.0",
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.21",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"dependencies": {
"@ant-design/pro-components": "2.8.1",
"antd": "5.24.6",
"classnames": "2.5.1",
"core-js": "3.39.0",
"date-fns": "4.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-feather": "2.0.10",
"react-markdown": "9.0.1",
"react-router-dom": "7.5.0",
"swr": "2.3.3"
}
}