108 lines
3.1 KiB
JSON
108 lines
3.1 KiB
JSON
{
|
|
"name": "react-inspector",
|
|
"version": "5.1.1",
|
|
"description": "Power of Browser DevTools inspectors right inside your React app",
|
|
"keywords": [
|
|
"devtools",
|
|
"inspector",
|
|
"object",
|
|
"object-inspector",
|
|
"react",
|
|
"react-component",
|
|
"reactjs",
|
|
"table",
|
|
"table-inspector",
|
|
"table-view",
|
|
"tableview",
|
|
"tree",
|
|
"tree-view",
|
|
"treeview",
|
|
"ui",
|
|
"view"
|
|
],
|
|
"homepage": "https://github.com/xyc/react-inspector",
|
|
"bugs": {
|
|
"url": "https://github.com/xyc/react-inspector/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/xyc/react-inspector.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Xiaoyi Chen <cxychina@gmail.com> (http://github.com/xyc)",
|
|
"main": "dist/cjs/react-inspector.js",
|
|
"module": "dist/es/react-inspector.js",
|
|
"files": [
|
|
"dist/*/",
|
|
"README.md",
|
|
"LICENSE",
|
|
"HISTORY.md",
|
|
".js",
|
|
".d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"build-storybook": "build-storybook",
|
|
"chromatic": "chromatic --project-token=17yeg4lpa7q",
|
|
"clean": "rimraf dist",
|
|
"lint": "eslint src --fix",
|
|
"prerelease": "npm run lint && npm run test && npm run clean && npm run build",
|
|
"release": "npm publish . --access public",
|
|
"storybook": "start-storybook -p 9001",
|
|
"test": "jest src",
|
|
"test-updatesnapshot": "jest src --update-snapshot",
|
|
"test-watch": "npm run test -- --watch"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.0.0",
|
|
"is-dom": "^1.0.0",
|
|
"prop-types": "^15.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.11.6",
|
|
"@babel/core": "^7.11.6",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/plugin-proposal-do-expressions": "^7.10.4",
|
|
"@babel/plugin-proposal-export-default-from": "^7.10.4",
|
|
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
|
|
"@babel/plugin-syntax-bigint": "^7.8.3",
|
|
"@babel/plugin-transform-object-assign": "^7.10.4",
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
"@babel/preset-env": "^7.11.5",
|
|
"@babel/preset-react": "^7.10.4",
|
|
"@babel/register": "^7.11.5",
|
|
"@storybook/react": "^6.0.21",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^8.1.0",
|
|
"chromatic": "^5.1.0",
|
|
"core-js": "^3.6.5",
|
|
"css-loader": "^4.3.0",
|
|
"eslint": "^7.8.1",
|
|
"eslint-plugin-jasmine": "^4.1.1",
|
|
"eslint-plugin-react": "^7.20.6",
|
|
"expect": "^26.4.2",
|
|
"jest": "^26.4.2",
|
|
"prettier": "^2.1.1",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"react-hot-loader": "^4.12.21",
|
|
"react-test-renderer": "^16.13.1",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.26.11",
|
|
"rollup-plugin-babel": "^4.4.0",
|
|
"rollup-plugin-cleanup": "^3.1.1",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"style-loader": "^1.2.1",
|
|
"webpack": "^4.44.1",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.4 || ^17.0.0"
|
|
}
|
|
}
|