dependency-graph-construction
Version:
A powerful tool to construct dependency graphs for JavaScript and TypeScript projects. Useful for project structure analysis and debugging.
94 lines (93 loc) • 2.84 kB
JSON
{
"name": "dependency-graph-construction",
"version": "1.0.2",
"description": "A powerful tool to construct dependency graphs for JavaScript and TypeScript projects. Useful for project structure analysis and debugging.",
"main": "bundler/index.js",
"bin": {
"visualize-graph": "./bin/visualize-graph.js"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src"
},
"keywords": [
"dependency-graph",
"visualizer",
"typescript",
"javascript",
"npm-package",
"project-visualization",
"babel",
"react",
"node",
"tool"
],
"author": {
"name": "Dixit Lukhi",
"email": "lukhidixit149@gmail.com"
},
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/node": "^7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@babel/preset-typescript": "^7.24.6",
"@babel/register": "^7.24.6",
"@babel/traverse": "^7.24.6",
"@viz-js/viz": "^3.6.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-imports": "^2.0.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"ts-graphviz": "^2.1.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.11.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"prettier": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/DixitLukhi/frontend-fdg.git"
},
"bugs": {
"url": "https://github.com/DixitLukhi/frontend-fdg/issues"
},
"homepage": "https://github.com/DixitLukhi/frontend-fdg/blob/main/README.md",
"files": [
"bundler",
"bin",
"lib",
"src",
"README.md",
"LICENSE"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}