-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 KB
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
{
"name": "example-cli-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": "vio@relative-ci.com",
"url": "https://relative-ci.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/relative-ci/example-cli-github-action/issues"
},
"homepage": "https://github.com/relative-ci/example-cli-github-action#readme",
"devDependencies": {
"@babel/core": "7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/preset-react": "7.24.6",
"@svgr/webpack": "7.0.0",
"autoprefixer": "10.4.14",
"babel-loader": "9.1.2",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.3",
"cssnano": "6.0.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.1",
"mini-css-extract-plugin": "2.9.0",
"postcss": "8.4.22",
"postcss-loader": "7.2.4",
"webpack": "5.79.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.3"
},
"dependencies": {
"antd": "^4.6.5",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}