-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@rx-angular/import-graph-visualizer",
"version": "0.2.2",
"description": "A development tool for filtering and visualizing import paths within a JavaScript/TypeScript application",
"bin": "dist/cli/main.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open --hot --mode development",
"build": "npm run build:app && npm run build:cli",
"build:app": "webpack --mode production",
"build:cli": "tsc src/cli/main.ts --strict --esModuleInterop --outDir dist/cli",
"reporter": "npm run build:cli && node dist/cli/reporter.js",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rx-angular/import-graph-visualizer.git"
},
"author": "Matěj Chalk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rx-angular/import-graph-visualizer/issues"
},
"homepage": "https://github.com/rx-angular/import-graph-visualizer#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/react-window": "^1.8.2",
"@types/yargs": "^16.0.0",
"copy-webpack-plugin": "^8.1.0",
"html-webpack-plugin": "^5.3.1",
"standard-version": "^9.2.0",
"ts-loader": "^8.0.18",
"webpack": "^5.26.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"dependency-cruiser": "^9.23.3",
"express": "^4.17.1",
"match-sorter": "^6.3.0",
"open": "^8.0.5",
"ora": "^5.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-window": "^1.8.6",
"typescript": "^5.3.3",
"vis-network": "^9.0.4",
"vscode-material-icons": "^0.1.0",
"yargs": "^16.2.0"
}
}