-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.76 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.76 KB
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
112
113
114
{
"name": "headstart",
"version": "6.0.0",
"description": "Head Start presents you with the main areas in the field, and lets you zoom into the most important publications within each area. It is intended to give researchers that are new to a field a head start on their literature review (hence the name).",
"main": "./vis/vis.js",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "TZ='Europe/Vienna' vitest",
"dev": "webpack --progress --watch --mode=development",
"prod": "webpack",
"start": "webpack serve --progress --mode=development --env example=base",
"example:base": "npm start",
"example:pubmed": "npm start -- --env example=pubmed",
"example:triple": "npm start -- --env example=triple",
"example:viper": "npm start -- --env example=viper",
"example:covis": "npm start -- --env example=covis",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenKnowledgeMaps/Headstart.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OpenKnowledgeMaps/Headstart/issues"
},
"homepage": "https://github.com/OpenKnowledgeMaps/Headstart#readme",
"dependencies": {
"@citation-js/core": "^0.7.18",
"@citation-js/plugin-csl": "^0.7.18",
"bootstrap": "3.4.1",
"bowser": "^2.11.0",
"d3": "^3.5.17",
"d3-ease": "^2.0.0",
"d3-selection": "^2.0.0",
"d3-transition": "^3.0.1",
"dateformat": "^5.0.3",
"hypher": "^0.2.5",
"iso-639-1": "^3.1.5",
"jquery": "^3.7.1",
"leaflet": "^1.9.4",
"mark.js": "^8.11.1",
"react": "^18.3.1",
"react-bootstrap": "^0.33.1",
"react-dom": "^18.3.1",
"react-highlight-words": "^0.21.0",
"react-hyphen": "^1.4.0",
"react-leaflet": "^4.2.1",
"react-redux": "^8.1.3",
"react-test-renderer": "^18.3.1",
"redux": "^5.0.1",
"shave": "^2.5.7"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.29.0",
"@rollup/plugin-inject": "^5.0.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.3",
"@types/dateformat": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/leaflet": "^1.9.20",
"@types/node": "^22.15.18",
"@types/react": "^18.3.1",
"@types/react-bootstrap": "^0.32.37",
"@types/react-dom": "^18.3.1",
"@types/redux-mock-store": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-react": "^4.4.1",
"babel-loader": "^10.0.0",
"bootstrap-sass": "^3.3.6",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"file-loader": "^6.2.0",
"globals": "^15.15.0",
"html-webpack-plugin": "^5.5.0",
"imports-loader": "^5.0.0",
"jsdom": "^26.1.0",
"mini-css-extract-plugin": "^2.3.0",
"prettier": "^3.5.3",
"process": "^0.11.10",
"redux-mock-store": "^1.5.5",
"sass": "^1.89.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"url-loader": "^4.1.1",
"vite-plugin-static-copy": "^3.0.0",
"vitest": "^3.1.3",
"webpack": "^5.99.8",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
}
}