-
Matthias Konitzny authored
Added KaTeX dependency.
Matthias Konitzny authoredAdded KaTeX dependency.
This project manages its dependencies using npm.
Learn more
package.json 2.28 KiB
{
"name": "knowledge-space",
"version": "1.1.2",
"description": "A Wordpress-Plugin to display knowledge in a graph-structured way.",
"source": "index.js",
"debug": "build/debug/graph.js",
"release": "build/release/graph.js",
"private": "true",
"targets": {
"main": false,
"debug": {
"distDir": "build/debug/"
},
"release": {
"distDir": "build/release/",
"sourceMap": false,
"optimize": true
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"distribute": "webpack --config webpack.prod.js && gulp build"
},
"repository": {
"type": "git",
"url": "https://gitlab.ibr.cs.tu-bs.de/alg/knowledge-space-wp-plugin.git"
},
"keywords": [
"Knowledge",
"Graph",
"Wordpress",
"Plugin"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@types/jquery": "^3.5.14",
"@types/katex": "^0.14.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"del": "^6.0.0",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"gulp": "^4.0.2",
"gulp-replace": "^1.1.3",
"gulp-zip": "^5.1.0",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^2.6.2",
"process": "^0.11.10",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"jquery": "^3.6.0",
"katex": "^0.16.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-force-graph": "^1.41.12",
"screenfull": "^6.0.1",
"three": ">=0.139.2",
"three-fatline": "^0.5.3",
"three-spritetext": "^1.6.5"
}
}