-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"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-dev-server",
"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.14.0",
"@babel/preset-env": "7.14.1",
"@babel/preset-react": "7.13.13",
"@relative-ci/agent": "4.2.12-beta.0",
"@svgr/webpack": "5.5.0",
"autoprefixer": "10.2.5",
"babel-loader": "8.2.2",
"copy-webpack-plugin": "8.1.1",
"css-loader": "5.2.4",
"cssnano": "5.0.2",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.1",
"mini-css-extract-plugin": "1.2.1",
"postcss": "8.4.31",
"postcss-loader": "5.2.0",
"webpack": "5.36.2",
"webpack-cli": "4.7.0",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"antd": "^4.6.5",
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}