forked from npmgraph/npmgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "npmgraph",
"type": "module",
"version": "3.1.1",
"description": "Visualize npm dependency graphs (public and private!)",
"author": {
"name": "Robert Kieffer",
"url": "http://github.com/broofa",
"email": "[email protected]"
},
"license": "MIT",
"browserslist": [
"last 2 versions"
],
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/fregante"
],
"repository": {
"url": "https://github.com/npmgraph/npmgraph.git",
"type": "git"
},
"keywords": [
"npm",
"dependencies",
"dependency",
"graph",
"module"
],
"scripts": {
"build": "parcel build index.html --no-cache",
"fetch-licenses": "node scripts/fetch_licenses.js",
"release": "standard-version",
"start": "parcel serve index.html --no-cache",
"lint": "eslint .",
"fix": "run-p 'lint -- --fix' format:fix",
"format:check": "prettier -c .",
"format:fix": "prettier -w .",
"types": "tsc --noEmit",
"test": "run-p format:check lint types build"
},
"dependencies": {
"@bugsnag/js": "7.25.0",
"@hpcc-js/wasm-graphviz": "^1.0.3",
"@types/d3-interpolate": "3.0.4",
"@types/d3-scale": "4.0.8",
"@types/d3-scale-chromatic": "3.0.3",
"@types/d3-shape": "3.1.6",
"d3-hierarchy": "3.1.2",
"d3-interpolate": "3.0.1",
"d3-scale": "4.0.2",
"d3-scale-chromatic": "3.1.0",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0",
"filter-altered-clicks": "2.1.1",
"md5": "2.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"select-dom": "^9.0.0",
"semver": "7.6.2",
"simplur": "4.0.0"
},
"@parcel/resolver-default": {
"packageExports": true,
"packageExports-why": "added this because new graphviz uses exports in package.json"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@eslint-react/eslint-plugin": "^1.15.0",
"@npm/types": "2.0.0",
"@parcel/packager-xml": "^2.12.0",
"@parcel/runtime-react-refresh": "^2.12.0",
"@parcel/transformer-inline-string": "2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@parcel/transformer-svg-react": "^2.12.0",
"@parcel/transformer-xml": "^2.12.0",
"@types/d3-hierarchy": "3.1.7",
"@types/d3-selection": "3.0.10",
"@types/md5": "2.3.5",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/semver": "^7.5.8",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"npm-run-all2": "^6.2.2",
"parcel": "^2.12.0",
"postcss": "8.4.39",
"postcss-modules": "4.3.1",
"prettier": "3.3.3",
"prettier-plugin-css-order": "2.1.2",
"process": "0.11.10",
"standard-version": "9.5.0",
"typed-query-selector": "^2.11.2",
"typescript": "5.5.3",
"typescript-plugin-css-modules": "^5.1.0"
}
}