e8107cc96a
- added DynamicSupervisor, which starts Pleroma deps and restarts config dependent deps - added pleroma installer, where user can configure database credentials and pleroma config. Settings are saved into file and in database - added versioning for in database config. New version is created from changes which are passed to config update/delete endpoint. Every version contains backup with all changes added through update. Versioning supports rollbacks with N steps. With a rollback, all versions that come after the version on which the rollback was made are deleted.
26 lines
673 B
JSON
26 lines
673 B
JSON
{
|
|
"repository": {},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"deploy": "webpack --mode production",
|
|
"watch": "webpack --mode development --watch"
|
|
},
|
|
"dependencies": {
|
|
"call-bind": "^1.0.0",
|
|
"phoenix": "file:../../deps/phoenix",
|
|
"phoenix_html": "file:../../deps/phoenix_html"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"babel-loader": "^8.0.0",
|
|
"copy-webpack-plugin": "^5.1.1",
|
|
"css-loader": "^3.4.2",
|
|
"mini-css-extract-plugin": "^0.9.0",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
|
"terser-webpack-plugin": "^2.3.2",
|
|
"webpack": "4.41.5",
|
|
"webpack-cli": "^3.3.2"
|
|
}
|
|
}
|