-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 3.11 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
{
"name": "dcat-viewer",
"version": "1.0.0-alpha.0",
"description": "DCAT-AP compatible viewer.",
"private": true,
"author": "",
"scripts": {
"dev": "node server/develop/server-develop.js",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore . --fix",
"test": "jest -c client/jest.config.js --collectCoverage",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.production.js",
"stats": "cross-env NODE_ENV=production webpack --config ./build/webpack.production.js --profile --json > package-stats.json && webpack-bundle-analyzer package-stats.json",
"start": "node server/production/server-production.js"
},
"license": "MIT",
"repository": "github:linkedpipes/dcat-ap-viewer",
"dependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/history": "^4.7.11",
"@types/randomcolor": "^0.5.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@types/reactstrap": "^8.7.2",
"babel-loader": "^9.1.2",
"bootstrap": "^5.2.3",
"browserslist": "^4.21.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.27.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"es6-promise": "^4.2.8",
"express": "^4.18.2",
"helmet": "^6.0.1",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"isomorphic-fetch": "^3.0.0",
"jsonld": "^8.1.1",
"mini-css-extract-plugin": "^2.7.2",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-bootstrap-typeahead": "^6.0.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-intl": "^6.2.8",
"react-redux": "^8.0.5",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-tagcloud": "^2.3.1",
"reactstrap": "^9.1.5",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"request": "^2.88.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typesafe-actions": "^5.1.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-merge": "^5.8.0",
"winston": "^3.8.2",
"yaml": "^2.2.1"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.9.2",
"@types/jest": "^29.4.0",
"@types/jsonld": "^1.5.8",
"babel-jest": "^29.4.2",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.0",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-hot-middleware": "^2.25.3"
}
}