bugzilla-dashboard/package.json

57 строки
1.4 KiB
JSON
Исходник Обычный вид История

2018-11-23 20:14:27 +03:00
{
"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",
2018-11-23 20:14:27 +03:00
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"test": "jest",
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src test"
2018-11-23 20:14:27 +03:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.js[x]": [
"yarn lint"
]
},
2018-11-23 20:14:27 +03:00
"dependencies": {
"@material-ui/core": "^3.9.2",
2018-11-30 18:15:15 +03:00
"@material-ui/icons": "^3.0.1",
"@mozilla-frontend-infra/components": "^2.0.0",
"chart.js": "^2.7.3",
"moment": "^2.23.0",
"prop-types": "^15",
"query-string": "^6.2.0",
"react": "^16",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16",
"react-hot-loader": "^4",
2018-11-29 18:42:44 +03:00
"react-router-dom": "^4.3.1",
"typeface-roboto": "^0.0.54"
2018-11-23 20:14:27 +03:00
},
"devDependencies": {
"@neutrinojs/airbnb": "^9.0.0-beta.1",
"@neutrinojs/copy": "^8.3.0",
"@neutrinojs/jest": "^9.0.0-beta.1",
"@neutrinojs/react": "^9.0.0-beta.1",
"eslint": "^5",
"husky": "^1.2.0",
"jest": "^23",
"lint-staged": "^8.1.0",
"neutrino": "^9.0.0-beta.1",
"node-fetch": "^2.3.0",
"react-test-renderer": "^16.6.3",
"webpack": "^4",
"webpack-cli": "^3",
"webpack-dev-server": "^3"
2018-11-23 20:14:27 +03:00
}
}