-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
111 lines (111 loc) · 4.86 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vosviewer-online",
"version": "1.2.4",
"description": "VOSviewer Online is a tool for network visualization. It is a web-based version of VOSviewer, a popular tool for constructing and visualizing bibliometric networks.",
"author": "Nees Jan van Eck <[email protected]> (https://github.com/neesjanvaneck)",
"keywords": [
"VOSviewer Online",
"VOSviewer",
"bibliometric network",
"network visualization",
"network analysis",
"clustering",
"layout",
"React",
"React component"
],
"license": "MIT",
"homepage": "https://github.com/neesjanvaneck/VOSviewer-Online#readme",
"repository": {
"type": "git",
"url": "https://github.com/neesjanvaneck/VOSviewer-Online.git"
},
"bugs": {
"url": "https://github.com/neesjanvaneck/VOSviewer-Online/issues"
},
"module": "src",
"scripts": {
"build": "webpack --progress --env config=config.json --config webpack.config.babel.js",
"build:vosviewer": "npm run build",
"build:dimensions": "webpack --progress --env config=config-dimensions.json --env mode=dimensions --config webpack.config.babel.js",
"build:zeta-alpha": "webpack --progress --env config=config-zeta-alpha.json --env mode=zeta-alpha --config webpack.config.babel.js",
"build:rori": "webpack --progress --env mode=rori --config webpack.config.babel.js",
"dev": "webpack serve --hot --port 8600 --env dev --env config=config.json --config webpack.config.babel.js",
"dev:vosviewer": "npm run dev",
"dev:dimensions": "webpack serve --hot --port 8600 --env dev --env config=config-dimensions.json --env mode=dimensions --config webpack.config.babel.js",
"dev:zeta-alpha": "webpack serve --hot --port 8600 --env dev --env config=config-zeta-alpha.json --env mode=zeta-alpha --config webpack.config.babel.js",
"dev:rori": "webpack serve --hot --port 8600 --env dev --env mode=rori --config webpack.config.babel.js",
"build-component-package": "rm -rf lib && npm run build-component:vosviewer && npm run build-component:dimensions && npm run build-component:zeta-alpha && node copy-component-package-json.js && cp ./LICENSE ./lib && cp ./README-component.md ./lib/README.md",
"build-component:vosviewer": "webpack --progress --env config=config.json --config webpack.component.config.babel.js",
"build-component:dimensions": "webpack --progress --env config=config-dimensions.json --env mode=dimensions --config webpack.component.config.babel.js",
"build-component:zeta-alpha": "webpack --progress --env config=config-zeta-alpha.json --env mode=zeta-alpha --config webpack.component.config.babel.js",
"copy-component-package-json": "node copy-component-package-json.js",
"publish-component-package": "cd ./lib && npm publish && rm -rf .cache"
},
"dependencies": {
"autosuggest-highlight": "^3.3.4",
"d3": "^7.9.0",
"decode-uri-component": "^0.2.0",
"dompurify": "^2.4.7",
"java-random": "^0.4.0",
"leven-sort": "^4.0.0",
"lodash": "^4.17.21",
"mobx": "^6.6.1",
"mobx-react-lite": "^3.4.0",
"networkanalysis-ts": "^1.0.0",
"papaparse": "^5.3.2",
"qrcode.react": "^1.0.1",
"qs": "^6.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-full-screen": "^1.1.1",
"react-resize-detector": "^7.1.2",
"use-debounce": "0.0.7"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@hot-loader/react-dom": "^17.0.2",
"@mui/icons-material": "^5.10.3",
"@mui/material": "^5.10.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.2.5",
"babel-plugin-emotion": "^10.0.23",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.3",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint-plugin-emotion": "^10.0.23",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.1",
"html-react-parser": "^3.0.4",
"html-webpack-plugin": "^5.5.0",
"material-ui-color": "^1.2.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"react-helmet": "^6.1.0",
"remove-files-webpack-plugin": "^1.5.0",
"terser-webpack-plugin": "^5.3.6",
"tinyurl": "^1.1.7",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1",
"workerize-loader": "^2.0.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}