67 строки
2.1 KiB
JSON
67 строки
2.1 KiB
JSON
{
|
|
"name": "mezzurite-devtools",
|
|
"version": "1.0.0",
|
|
"description": "A Chrome DevTools extension for helping developers onboard onto and debug their Mezzurite setup",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"css-vars-ponyfill": "^1.16.2",
|
|
"normalize.css": "^8.0.1",
|
|
"react": "^16.5.2",
|
|
"react-dom": "^16.5.2",
|
|
"react-modal": "^3.8.1",
|
|
"react-router-dom": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.1.0",
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/preset-env": "^7.1.0",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-jest": "^23.6.0",
|
|
"babel-loader": "^8.0.2",
|
|
"clean-webpack-plugin": "^1.0.0",
|
|
"copy-webpack-plugin": "^4.6.0",
|
|
"css-loader": "^1.0.0",
|
|
"eslint": "^5.12.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-config-standard-react": "^7.0.2",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-jest": "^22.1.3",
|
|
"eslint-plugin-node": "^8.0.1",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-react": "^7.12.3",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"file-loader": "^3.0.1",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^23.6.0",
|
|
"prop-types": "^15.6.2",
|
|
"react-test-renderer": "^16.7.0",
|
|
"regenerator-runtime": "^0.13.1",
|
|
"style-loader": "^0.23.0",
|
|
"stylelint": "^9.10.1",
|
|
"stylelint-config-standard": "^18.2.0",
|
|
"webpack": "^4.19.1",
|
|
"webpack-cli": "^3.1.1"
|
|
},
|
|
"scripts": {
|
|
"build:dev": "webpack --config ./webpack.config.js --env dev",
|
|
"build:prod": "webpack --config ./webpack.config.js --env prod",
|
|
"lint": "npm run lint:css && npm run lint:js",
|
|
"lint:css": "stylelint \"./src/devpanel/**/*.css\"",
|
|
"lint:js": "eslint ./src",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Microsoft/Mezzurite-DevTools.git"
|
|
},
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/Mezzurite-DevTools/issues"
|
|
},
|
|
"homepage": "https://github.com/Microsoft/Mezzurite-DevTools#readme"
|
|
}
|