bugzilla-dashboard/package.json

45 строки
1.1 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": {
"prop-types": "^15",
"react": "^16",
"react-dom": "^16",
"react-hot-loader": "^4"
2018-11-23 20:14:27 +03:00
},
"devDependencies": {
"@neutrinojs/airbnb": "^9.0.0-beta.1",
"@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",
"webpack": "^4",
"webpack-cli": "^3",
"webpack-dev-server": "^3"
2018-11-23 20:14:27 +03:00
}
}