64 строки
1.7 KiB
JSON
64 строки
1.7 KiB
JSON
{
|
|
"name": "bugzilla-dashboard",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:mozilla/bugzilla-dashboard.git",
|
|
"author": "Armen Zambrano G. <armenzg@gmail.com>",
|
|
"license": "MPL-2.0",
|
|
"scripts": {
|
|
"build": "webpack --mode production",
|
|
"start": "webpack-dev-server --mode development",
|
|
"start:alternativeAuth": "ALTERNATIVE_AUTH=true webpack-dev-server --mode development",
|
|
"test": "jest",
|
|
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src test"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"pre-push": "yarn test"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js[x]": [
|
|
"yarn lint"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@material-ui/core": "^3.9.4",
|
|
"@material-ui/icons": "^3.0.1",
|
|
"@mozilla-frontend-infra/components": "^2.5.0",
|
|
"chart.js": "^2.9.3",
|
|
"client-oauth2": "^4.2.5",
|
|
"mitt": "^1.2.0",
|
|
"moment": "^2.23.0",
|
|
"mui-datatables": "^2.14.0",
|
|
"pako": "^1.0.11",
|
|
"prop-types": "^15",
|
|
"query-string": "^6.12.1",
|
|
"react": "^16.13.1",
|
|
"react-chartjs-2": "^2.9.0",
|
|
"react-dom": "^16.13.1",
|
|
"react-hot-loader": "^4.12.20",
|
|
"react-router-dom": "^4.3.1",
|
|
"taskcluster-client-web": "9.0.0",
|
|
"taskcluster-lib-urls": "^12.1.0",
|
|
"typeface-roboto": "^0.0.54"
|
|
},
|
|
"devDependencies": {
|
|
"@neutrinojs/airbnb": "^9.1.0",
|
|
"@neutrinojs/copy": "^9.1.0",
|
|
"@neutrinojs/jest": "^9.1.0",
|
|
"@neutrinojs/react": "^9.1.0",
|
|
"eslint": "^5",
|
|
"husky": "^1.2.0",
|
|
"jest": "^24.9.0",
|
|
"lint-staged": "^8.2.1",
|
|
"neutrino": "^9.1.0",
|
|
"node-fetch": "^2.6.1",
|
|
"react-test-renderer": "^16.13.1",
|
|
"webpack": "^4.42.1",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.10.3"
|
|
}
|
|
}
|