-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.53 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
47
48
49
50
51
52
{
"name": "example-cli-github-action",
"version": "1.0.0",
"description": "@relative-ci/agent webpack plugin setup example for Github Action",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.jsx .",
"build": "webpack --mode production --json artifacts/webpack-stats.json",
"start": "webpack serve --mode development",
"test": "echo \"Error: no test\" && 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.26.10",
"@babel/eslint-parser": "7.27.0",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@relative-ci/cli": "5.1.0-beta.5",
"babel-loader": "10.0.0",
"css-loader": "7.1.2",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"html-webpack-plugin": "5.6.3",
"mini-css-extract-plugin": "2.9.2",
"webpack": "5.98.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.2"
},
"dependencies": {
"@ant-design/pro-components": "2.8.7",
"antd": "5.24.6",
"classnames": "2.5.1",
"core-js": "3.42.0",
"date-fns": "4.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-feather": "2.0.10",
"react-markdown": "10.1.0",
"react-router-dom": "7.5.2",
"swr": "2.3.4"
}
}