-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "lighthouse-report",
"private": true,
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "parcel watch --public-url ./ ./src/main/resources/io/jenkins/plugins/LighthouseReportBuildAction/script.js -d ./src/main/webapp/js",
"mvnbuild": "parcel build --public-url ./ ./src/main/resources/io/jenkins/plugins/LighthouseReportBuildAction/script.js -d ./src/main/webapp/js",
"build": "npm run mvnbuild",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore src",
"mvntest": "npm run lint",
"test": "npm run lint"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.26.1",
"lighthouse": "^9.5.0",
"parcel-bundler": "^1.12.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lighthouse-viewer": "^6.0.2"
},
"dependencies": {},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}