-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "woocommerce-test-reports",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/woocommerce/woocommerce-test-reports.git"
},
"bugs": {
"url": "https://github.com/woocommerce/woocommerce-test-reports/issues"
},
"homepage": "https://woocommerce.github.io/woocommerce-test-reports/",
"dependencies": {
"bootstrap": "^5.3.8",
"moment": "^2.30.1",
"react": "^19.2.7",
"react-bootstrap": "2.10.10",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.2",
"recharts": "^3.8.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1058.0",
"@babel/preset-react": "^7.29.7",
"@octokit/rest": "^22.0.1",
"@wordpress/eslint-plugin": "^25.3.0",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.7",
"prettier": "npm:wp-prettier@^3.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.107.2",
"webpack-cli": "^7.0.3",
"webpack-dev-server": "^5.2.4"
},
"overrides": {
"uuid": "^11.1.1"
},
"scripts": {
"clean": "rm -rf node_modules",
"prestart": "webpack --config webpack.config.dev.js",
"start": "webpack serve --open --hot --config webpack.config.dev.js",
"prebuild": "rm -rf dist",
"build": "webpack --config webpack.config.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.jsx,.cjs,.mjs,.ts,.tsx .",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}